From 86ee652fa12b12d42c89337838fccb543dc4087e Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Fri, 9 Dec 2022 15:30:25 +0100 Subject: [PATCH 01/62] feat(impl):[TRI-869] single level usage as built coverage --- ...setAdministrationShellTestdataCreator.java | 7 ++++ .../local/CxTestDataContainer.java | 6 ++++ .../irs/edc/SubmodelTestdataCreator.java | 5 ++- .../irs/edc/EdcSubmodelClientTest.java | 34 ++++++++++++++++--- 4 files changed, 46 insertions(+), 6 deletions(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/registry/domain/AssetAdministrationShellTestdataCreator.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/registry/domain/AssetAdministrationShellTestdataCreator.java index 5a7e556963..643f831b53 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/registry/domain/AssetAdministrationShellTestdataCreator.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/registry/domain/AssetAdministrationShellTestdataCreator.java @@ -39,6 +39,7 @@ * Class to create AssetAdministrationShell Testdata * As AASWrapper is not deployed, we are using this class to Stub responses */ +@SuppressWarnings({ "PMD.TooManyMethods" }) class AssetAdministrationShellTestdataCreator { private final CxTestDataContainer cxTestDataContainer; @@ -57,6 +58,7 @@ public AssetAdministrationShellDescriptor createDummyAssetAdministrationShellDes final List submodelDescriptors = new ArrayList<>(); cxTestData.get().getAssemblyPartRelationship().ifPresent(submodel -> submodelDescriptors.add(createAssemblyPartRelationshipSubmodelDescriptor(catenaXId))); cxTestData.get().getSerialPartTypization().ifPresent(submodel -> submodelDescriptors.add(createSerialPartTypizationSubmodelDescriptor(catenaXId))); + cxTestData.get().getSingleLevelUsageAsBuilt().ifPresent(submodel -> submodelDescriptors.add(createSingleLevelUsageAsBuiltSubmodelDescriptor(catenaXId))); cxTestData.get().getSingleLevelBomAsPlanned().ifPresent(submodel -> submodelDescriptors.add(createSingleLevelBomAsPlannedSubmodelDescriptor(catenaXId))); cxTestData.get().getPartAsPlanned().ifPresent(submodel -> submodelDescriptors.add(createPartAsPlannedSubmodelDescriptor(catenaXId))); cxTestData.get().getBatch().ifPresent(submodel -> submodelDescriptors.add(createBatchSubmodelDescriptor(catenaXId))); @@ -80,6 +82,11 @@ private SubmodelDescriptor createAssemblyPartRelationshipSubmodelDescriptor(fina "assemblyPartRelationship"); } + private SubmodelDescriptor createSingleLevelUsageAsBuiltSubmodelDescriptor(final String catenaXId) { + return createSubmodelDescriptor(catenaXId, "urn:bamm:io.catenax.single_level_usage_as_built:1.0.0", + "singleLevelUsageAsBuilt"); + } + private SubmodelDescriptor createSerialPartTypizationSubmodelDescriptor(final String catenaXId) { return createSubmodelDescriptor(catenaXId, "urn:bamm:io.catenax.serial_part_typization:1.0.0", "serialPartTypization"); diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/local/CxTestDataContainer.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/local/CxTestDataContainer.java index b510f56f14..50551aa308 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/local/CxTestDataContainer.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/local/CxTestDataContainer.java @@ -56,6 +56,8 @@ public static class CxTestData { private List> serialPartTypization; @JsonProperty("urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship") private List> assemblyPartRelationship; + @JsonProperty("urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt") + private List> singleLevelUsageAsBuilt; @JsonProperty("urn:bamm:io.catenax.part_as_planned:1.0.0#PartAsPlanned") private List> partAsPlanned; @JsonProperty("urn:bamm:io.catenax.single_level_bom_as_planned:1.0.2#SingleLevelBomAsPlanned") @@ -77,6 +79,10 @@ public Optional> getAssemblyPartRelationship() { return assemblyPartRelationship != null ? assemblyPartRelationship.stream().findFirst() : Optional.empty(); } + public Optional> getSingleLevelUsageAsBuilt() { + return singleLevelUsageAsBuilt != null ? singleLevelUsageAsBuilt.stream().findFirst() : Optional.empty(); + } + public Optional> getPartAsPlanned() { return partAsPlanned != null ? partAsPlanned.stream().findFirst() : Optional.empty(); } diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/SubmodelTestdataCreator.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/SubmodelTestdataCreator.java index 6cc9b7572a..28e00e2d86 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/SubmodelTestdataCreator.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/SubmodelTestdataCreator.java @@ -50,13 +50,16 @@ class SubmodelTestdataCreator { objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); } + @SuppressWarnings({ "PMD.CyclomaticComplexity" }) public Map createSubmodelForId(final String endpointAddress) { final String catenaXId = StringUtils.substringBefore(endpointAddress, "_"); if (endpointAddress.contains("assemblyPartRelationship")) { return this.cxTestDataContainer.getByCatenaXId(catenaXId).flatMap(CxTestDataContainer.CxTestData::getAssemblyPartRelationship).orElse(Map.of()); + } else if (endpointAddress.contains("singleLevelUsageAsBuilt")) { + return this.cxTestDataContainer.getByCatenaXId(catenaXId).flatMap(CxTestDataContainer.CxTestData::getSingleLevelUsageAsBuilt).orElse(Map.of()); } else if (endpointAddress.contains("serialPartTypization")) { return this.cxTestDataContainer.getByCatenaXId(catenaXId).flatMap(CxTestDataContainer.CxTestData::getSerialPartTypization).orElse(Map.of()); - } else if (endpointAddress.contains("singleLevelBomAsPlanned")) { + } else if (endpointAddress.contains("singleLevelBomAsPlanned")) { return this.cxTestDataContainer.getByCatenaXId(catenaXId).flatMap(CxTestDataContainer.CxTestData::getSingleLevelBomAsPlanned).orElse(Map.of()); } else if (endpointAddress.contains("partAsPlanned")) { return this.cxTestDataContainer.getByCatenaXId(catenaXId).flatMap(CxTestDataContainer.CxTestData::getPartAsPlanned).orElse(Map.of()); diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/EdcSubmodelClientTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/EdcSubmodelClientTest.java index 2907b4ed52..dfd1b3454b 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/EdcSubmodelClientTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/EdcSubmodelClientTest.java @@ -49,6 +49,8 @@ import org.eclipse.tractusx.irs.component.GlobalAssetIdentification; import org.eclipse.tractusx.irs.component.LinkedItem; import org.eclipse.tractusx.irs.component.Relationship; +import org.eclipse.tractusx.irs.component.enums.BomLifecycle; +import org.eclipse.tractusx.irs.component.enums.Direction; import org.eclipse.tractusx.irs.configuration.EdcConfiguration; import org.eclipse.tractusx.irs.edc.model.NegotiationResponse; import org.eclipse.tractusx.irs.exceptions.ContractNegotiationException; @@ -173,9 +175,7 @@ void shouldReturnRelationshipsWhenRequestingWithCatenaXIdAndSingleLevelBomAsPlan final List submodelResponse = testee.getRelationships("http://localhost/" + catenaXId + "/submodel", RelationshipAspect.SingleLevelBomAsPlanned).get(5, TimeUnit.SECONDS); - assertThat(submodelResponse.get(0).getCatenaXId().getGlobalAssetId()).isEqualTo(catenaXId); - assertThat(submodelResponse).hasSize(1); - + assertThat(submodelResponse).isNotEmpty(); final List childIds = submodelResponse.stream() .map(Relationship::getLinkedItem) .map(LinkedItem::getChildCatenaXId) @@ -186,13 +186,13 @@ void shouldReturnRelationshipsWhenRequestingWithCatenaXIdAndSingleLevelBomAsPlan @Test void shouldReturnEmptyRelationshipsWhenRequestingWithCatenaXIdAndSingleLevelUsageAsBuilt() throws Exception { - final String catenaXId = "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c"; + final String catenaXId = "urn:uuid:d7977805-ef52-43c4-9e1d-2f7f0e82c17c"; prepareTestdata(catenaXId, "_singleLevelUsageAsBuilt"); final List submodelResponse = testee.getRelationships("http://localhost/" + catenaXId + "/submodel", RelationshipAspect.SingleLevelUsageAsBuilt).get(5, TimeUnit.SECONDS); - assertThat(submodelResponse).isEmpty(); + assertThat(submodelResponse).isNotEmpty(); } @Test @@ -219,6 +219,30 @@ void shouldReturnRawSerialPartTypizationWhenExisting() throws Exception { "{\"localIdentifiers\":[{\"value\":\"BPNL00000003AYRE\",\"key\":\"manufacturerId\"}"); } + @Test + void shouldReturnSameRelationshipsForDifferentDirections() throws Exception { + final String parentCatenaXId = "urn:uuid:bd661150-8491-4442-943b-3e6e96fb0049"; + final BomLifecycle asBuilt = BomLifecycle.AS_BUILT; + + prepareTestdata(parentCatenaXId, "_assemblyPartRelationship"); + final List assemblyPartRelationships = testee.getRelationships("http://localhost/" + parentCatenaXId + "/submodel", + RelationshipAspect.from(asBuilt, Direction.DOWNWARD)).get(5, TimeUnit.SECONDS); + + final GlobalAssetIdentification childCatenaXId = assemblyPartRelationships.stream() + .findAny() + .map(Relationship::getLinkedItem) + .map(LinkedItem::getChildCatenaXId).orElseThrow(); + + prepareTestdata(childCatenaXId.getGlobalAssetId(), "_singleLevelUsageAsBuilt"); + final List singleLevelUsageRelationships = testee.getRelationships("http://localhost/" + childCatenaXId.getGlobalAssetId() + "/submodel", + RelationshipAspect.from(asBuilt, Direction.UPWARD)).get(5, TimeUnit.SECONDS); + + assertThat(assemblyPartRelationships).isNotEmpty(); + assertThat(singleLevelUsageRelationships).isNotEmpty(); + assertThat(assemblyPartRelationships.get(0).getCatenaXId()).isEqualTo(singleLevelUsageRelationships.get(0).getCatenaXId()); + assertThat(assemblyPartRelationships.get(0).getLinkedItem().getChildCatenaXId()).isEqualTo(singleLevelUsageRelationships.get(0).getLinkedItem().getChildCatenaXId()); + } + private void prepareTestdata(final String catenaXId, final String submodelDataSuffix) throws ContractNegotiationException, IOException { when(contractNegotiationService.negotiate(any(), any())).thenReturn( From e3b490ff468175948063fbddd3b8e9d418e0a8f6 Mon Sep 17 00:00:00 2001 From: ds-alexander-bulgakov Date: Fri, 9 Dec 2022 15:37:18 +0100 Subject: [PATCH 02/62] THI-988: changed expected JSONs for DEV cucumber tests --- .../TRI-528-expected-relationships.json | 200 +- .../TRI-528-expected-submodels.json | 3342 +++++++------ .../TRI-704-expected-relationships.json | 200 +- .../TRI-704-expected-submodels.json | 4145 ++++++----------- .../TRI-767-expected-relationships.json | 208 +- .../TRI-767-expected-submodels.json | 3562 ++++++-------- 6 files changed, 4952 insertions(+), 6705 deletions(-) diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-relationships.json b/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-relationships.json index 182b759dbe..0aa27b9b64 100644 --- a/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-relationships.json +++ b/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-relationships.json @@ -1,7 +1,7 @@ { "relationships": [ { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -13,12 +13,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d71d22bf-1fca-49a4-aa39-3b2c4563327e" + "childCatenaXId": "urn:uuid:de9d233e-c371-490b-b02b-092756ccdd42" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -30,12 +30,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:97ddc65b-cb98-44e3-a21e-4940159dda34" + "childCatenaXId": "urn:uuid:625d9e00-b1c2-4d98-a9a7-fea9f00d2521" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -47,12 +47,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2bbd4409-1fd9-429d-bb7c-7297b67a4e34" + "childCatenaXId": "urn:uuid:94f95beb-2d2e-4275-af82-ef601d25e7db" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -64,12 +64,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e7bba1ca-c0e5-4e17-92eb-366ab7a9db92" + "childCatenaXId": "urn:uuid:82260db6-7ac1-4b61-9b98-e193cfbfcca4" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -81,12 +81,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:72a486fa-3ca0-4dc7-8c3a-893ed56ff874" + "childCatenaXId": "urn:uuid:d4e9558c-f75b-437d-8bd5-83fe14bdeeaf" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -98,12 +98,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:504cc0c4-4199-43bf-83d5-7ce575cf2170" + "childCatenaXId": "urn:uuid:a7fc6773-b3f2-4b9e-b0ca-586cbbd51dd9" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -115,12 +115,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0f006414-e0e8-40a4-85ed-c126322b3b61" + "childCatenaXId": "urn:uuid:6bd19830-3f63-4915-906d-0dd26196b7a6" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -132,12 +132,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2a1bd6c6-69c3-41b6-8154-596a79567017" + "childCatenaXId": "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -149,12 +149,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a45d70f9-79f4-4247-9d96-2b42d3e30b9b" + "childCatenaXId": "urn:uuid:571cca8d-ceda-458e-a51c-69bcf53fa1ad" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -166,12 +166,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b5af1191-be7d-4a06-be65-45abab1003b8" + "childCatenaXId": "urn:uuid:f473c6ec-3920-433a-89cd-c3b914ed6963" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -183,12 +183,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:81ee63b0-0a37-42a3-bd7f-3a311cf9e067" + "childCatenaXId": "urn:uuid:719cff6f-8425-4a9a-a20f-1ddf92873d57" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -200,12 +200,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a1c33cc3-60c2-4b06-a929-2c3ef8d09dd2" + "childCatenaXId": "urn:uuid:0e90d4a6-8ccc-483b-a786-bfac2a2d6553" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -217,12 +217,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:260bafea-867b-4160-a2d2-b6f0ed52dd36" + "childCatenaXId": "urn:uuid:b2805664-6d1e-481a-b270-bc75cb67ad63" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -234,12 +234,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:000eee07-2df6-4e67-bc6a-6dd6b30d1dea" + "childCatenaXId": "urn:uuid:c1bbd0b8-b1df-40c5-b19a-714798799ffe" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -251,12 +251,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:890757b8-e562-4e0c-94f7-bd0806dd258f" + "childCatenaXId": "urn:uuid:eab9525d-79c0-4c3c-83dd-4815f2703ed1" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -268,12 +268,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2098f1c4-92af-4141-af33-36f125f2b342" + "childCatenaXId": "urn:uuid:1b96d3d5-05e7-4da7-9915-2ed834316ca4" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -285,12 +285,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:78a179e1-edb0-419a-bbea-6219015dcd92" + "childCatenaXId": "urn:uuid:aacf2b0e-5de2-4952-862e-2b47a12e59bc" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -302,12 +302,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:307651fd-71f7-42cc-a644-f82ecb10ee24" + "childCatenaXId": "urn:uuid:cb1e4dcd-31a0-47df-994b-f0f541cbaf9f" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -319,12 +319,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:7743b60c-a868-41e9-afab-ab2465734f20" + "childCatenaXId": "urn:uuid:cbb53a71-fba4-4753-868b-e91721d8f7b1" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -336,12 +336,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:719fa2fe-5462-43d0-a240-7ead01808de7" + "childCatenaXId": "urn:uuid:9663defa-684b-4e75-80d5-82d001ab217a" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -353,12 +353,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d03c22a1-0ccc-4aee-912a-d52386f76b33" + "childCatenaXId": "urn:uuid:9107e586-9bfa-4c82-b81c-6c8ae0ee36f6" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -370,12 +370,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:79426a34-3f11-422f-a5d4-c9f78637b00b" + "childCatenaXId": "urn:uuid:0bfbebba-8a1c-41a3-8199-b1075f327f7a" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -387,12 +387,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:7c4993ad-9bed-46c8-a9b4-261073a0a3b5" + "childCatenaXId": "urn:uuid:1294c992-af34-4779-b13c-5cae0fd521fb" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -404,12 +404,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:cafdcb5d-4ed8-40e0-8af4-2b986a08ca7d" + "childCatenaXId": "urn:uuid:34d50337-e11f-4f41-9a48-87cc986d5449" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -421,12 +421,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f2588c21-e82b-4049-8795-06e0a7cf63bd" + "childCatenaXId": "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -438,12 +438,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:3eea3fe0-fc9f-4ad9-b00d-24bf05e551e2" + "childCatenaXId": "urn:uuid:5ca6c6f0-3ac2-4b90-b88c-a28935646d55" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -455,12 +455,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:9fb82cbb-972b-4b04-a283-186ca45b2bd8" + "childCatenaXId": "urn:uuid:744ec0a4-575b-47b4-9c97-b5eaad60b51e" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -472,12 +472,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e4ee6157-108d-4dc5-b47b-08a317d1e2c5" + "childCatenaXId": "urn:uuid:fc7f69b3-27d8-40a8-866e-e4e79608d788" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -489,12 +489,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:4921d6d6-bb0e-488a-bfcb-43aa98f770f1" + "childCatenaXId": "urn:uuid:66488d8e-893a-4f4d-b650-e921ad5223e0" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -506,12 +506,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:84e40758-b27c-4838-a498-4d52772cbf29" + "childCatenaXId": "urn:uuid:4870af61-d8e5-4923-b8b9-e43bab6e555b" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -523,12 +523,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:61ed1b73-f75f-4001-a7d3-43b7b48627df" + "childCatenaXId": "urn:uuid:682f4e8e-2157-45ed-8833-0e51d6f4b555" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -540,12 +540,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:773a790c-3265-4a0d-a376-ba6892d1af6e" + "childCatenaXId": "urn:uuid:da6d0c77-2318-4cf0-b72a-602b758c4893" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -557,12 +557,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:fecce9a1-64a0-4bda-8ff9-1bb1abe8b3a2" + "childCatenaXId": "urn:uuid:b584ac7a-73b0-4d8b-8dff-a14dad6a8787" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -574,12 +574,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:fcfdf8a6-80ed-4345-a52d-ae440c0a2bd5" + "childCatenaXId": "urn:uuid:12236481-0285-44d8-810f-766c676a0298" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:504cc0c4-4199-43bf-83d5-7ce575cf2170", + "catenaXId": "urn:uuid:a7fc6773-b3f2-4b9e-b0ca-586cbbd51dd9", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -591,32 +591,32 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:19488393-c309-4f69-babb-ec2a2414e567" + "childCatenaXId": "urn:uuid:80dd9f05-d4e0-4b14-9436-d9a31865b2a8" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a1c33cc3-60c2-4b06-a929-2c3ef8d09dd2", + "catenaXId": "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3", "linkedItem": { "quantity": { - "quantityNumber": 1.0, + "quantityNumber": 0.2341, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" + "lexicalValue": "unit:kilogram" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6b7688db-ca94-4056-9e94-98b8f49bbf5e" + "childCatenaXId": "urn:uuid:44516a17-96a6-48ea-be5f-9c20b71f8220" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a1c33cc3-60c2-4b06-a929-2c3ef8d09dd2", + "catenaXId": "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3", "linkedItem": { "quantity": { - "quantityNumber": 0.3301, + "quantityNumber": 0.2014, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", "lexicalValue": "unit:kilogram" @@ -625,46 +625,46 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f38af026-2030-4da6-bcce-6af211400feb" + "childCatenaXId": "urn:uuid:1c9e90dc-1135-402c-8a4f-11b4e6e8ca6e" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a1c33cc3-60c2-4b06-a929-2c3ef8d09dd2", + "catenaXId": "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3", "linkedItem": { "quantity": { - "quantityNumber": 0.2001, + "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f6dc159a-c93d-4a61-a9c6-4985e6ffca31" + "childCatenaXId": "urn:uuid:6ac8d26d-332f-450b-b281-2db2e4ed161a" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:e4ee6157-108d-4dc5-b47b-08a317d1e2c5", + "catenaXId": "urn:uuid:6ac8d26d-332f-450b-b281-2db2e4ed161a", "linkedItem": { "quantity": { - "quantityNumber": 1.0, + "quantityNumber": 0.1908, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" + "lexicalValue": "unit:kilogram" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f680d61e-5c04-4dd1-9f7f-995719f20a48" + "childCatenaXId": "urn:uuid:4cf755d5-c54d-4049-bd34-ccb566bd7d08" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cafdcb5d-4ed8-40e0-8af4-2b986a08ca7d", + "catenaXId": "urn:uuid:aacf2b0e-5de2-4952-862e-2b47a12e59bc", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -676,32 +676,32 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:56f09d9a-7004-46e8-a7e1-5a4a4caecced" + "childCatenaXId": "urn:uuid:d25ba21d-55d8-4ba0-9a3e-2df4f199a08a" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cafdcb5d-4ed8-40e0-8af4-2b986a08ca7d", + "catenaXId": "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da", "linkedItem": { "quantity": { - "quantityNumber": 0.2341, + "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b5a3dc95-c4a3-482f-b5ef-89af7d6e6348" + "childCatenaXId": "urn:uuid:eabe1577-a594-409f-9da3-92dfa5b89354" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cafdcb5d-4ed8-40e0-8af4-2b986a08ca7d", + "catenaXId": "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da", "linkedItem": { "quantity": { - "quantityNumber": 0.2014, + "quantityNumber": 0.3301, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", "lexicalValue": "unit:kilogram" @@ -710,15 +710,15 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:57ff38c0-ba9b-42e0-8950-1b1c062efe04" + "childCatenaXId": "urn:uuid:d0545b54-8839-4b13-b6c5-f19f0b7c9105" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:6b7688db-ca94-4056-9e94-98b8f49bbf5e", + "catenaXId": "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da", "linkedItem": { "quantity": { - "quantityNumber": 0.1908, + "quantityNumber": 0.2001, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", "lexicalValue": "unit:kilogram" @@ -727,12 +727,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e6165b71-d315-4282-b874-bd35331d1dde" + "childCatenaXId": "urn:uuid:04baed27-a656-4cee-be2a-d2c99fa9c574" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:56f09d9a-7004-46e8-a7e1-5a4a4caecced", + "catenaXId": "urn:uuid:eabe1577-a594-409f-9da3-92dfa5b89354", "linkedItem": { "quantity": { "quantityNumber": 0.1908, @@ -744,9 +744,9 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:107d88d1-f24c-4f73-b099-254950609e91" + "childCatenaXId": "urn:uuid:b6496465-27fc-489e-9470-855215868bb2" }, "aspectType": "AssemblyPartRelationship" } ] -} +} \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-submodels.json b/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-submodels.json index 68c869e7e5..af603a52fb 100644 --- a/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-submodels.json +++ b/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-submodels.json @@ -1,1951 +1,1751 @@ { "submodels": [ { - "identification": "urn:uuid:f5c75551-357e-425d-a319-6bb29cce0a4b", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "SR-07", - "key": "manufacturerPartId" - }, - { - "value": "OMBKSFAKRYSEOMTIB", - "key": "partInstanceId" - }, - { - "value": "OMBKSFAKRYSEOMTIB", - "key": "van" - } - ], - "manufacturingInformation": { - "date": "2014-03-30T23:12:59.000Z", - "country": "DEU" - }, - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", - "partTypeInformation": { - "manufacturerPartId": "SR-07", - "classification": "product", - "nameAtManufacturer": "Vehicle Combustion" + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:6bd19830-3f63-4915-906d-0dd26196b7a6" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:9663defa-684b-4e75-80d5-82d001ab217a" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:9107e586-9bfa-4c82-b81c-6c8ae0ee36f6" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:66488d8e-893a-4f4d-b650-e921ad5223e0" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:a7fc6773-b3f2-4b9e-b0ca-586cbbd51dd9" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:aacf2b0e-5de2-4952-862e-2b47a12e59bc" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:571cca8d-ceda-458e-a51c-69bcf53fa1ad" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:94f95beb-2d2e-4275-af82-ef601d25e7db" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:5ca6c6f0-3ac2-4b90-b88c-a28935646d55" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:d4e9558c-f75b-437d-8bd5-83fe14bdeeaf" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f473c6ec-3920-433a-89cd-c3b914ed6963" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1294c992-af34-4779-b13c-5cae0fd521fb" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:cb1e4dcd-31a0-47df-994b-f0f541cbaf9f" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:0bfbebba-8a1c-41a3-8199-b1075f327f7a" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:da6d0c77-2318-4cf0-b72a-602b758c4893" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:719cff6f-8425-4a9a-a20f-1ddf92873d57" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:744ec0a4-575b-47b4-9c97-b5eaad60b51e" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:34d50337-e11f-4f41-9a48-87cc986d5449" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:de9d233e-c371-490b-b02b-092756ccdd42" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:eab9525d-79c0-4c3c-83dd-4815f2703ed1" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:82260db6-7ac1-4b61-9b98-e193cfbfcca4" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:cbb53a71-fba4-4753-868b-e91721d8f7b1" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:0e90d4a6-8ccc-483b-a786-bfac2a2d6553" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:12236481-0285-44d8-810f-766c676a0298" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1b96d3d5-05e7-4da7-9915-2ed834316ca4" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:fc7f69b3-27d8-40a8-866e-e4e79608d788" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:4870af61-d8e5-4923-b8b9-e43bab6e555b" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:c1bbd0b8-b1df-40c5-b19a-714798799ffe" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:b2805664-6d1e-481a-b270-bc75cb67ad63" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:682f4e8e-2157-45ed-8833-0e51d6f4b555" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:b584ac7a-73b0-4d8b-8dff-a14dad6a8787" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:625d9e00-b1c2-4d98-a9a7-fea9f00d2521" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da" } - } + ] }, { - "identification": "urn:uuid:97ed9695-96b0-480d-9732-998673920155", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", - "childParts": [ - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:4921d6d6-bb0e-488a-bfcb-43aa98f770f1" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2a1bd6c6-69c3-41b6-8154-596a79567017" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f2588c21-e82b-4049-8795-06e0a7cf63bd" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:719fa2fe-5462-43d0-a240-7ead01808de7" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:504cc0c4-4199-43bf-83d5-7ce575cf2170" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e4ee6157-108d-4dc5-b47b-08a317d1e2c5" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:7c4993ad-9bed-46c8-a9b4-261073a0a3b5" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:fcfdf8a6-80ed-4345-a52d-ae440c0a2bd5" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:890757b8-e562-4e0c-94f7-bd0806dd258f" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:000eee07-2df6-4e67-bc6a-6dd6b30d1dea" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d71d22bf-1fca-49a4-aa39-3b2c4563327e" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:97ddc65b-cb98-44e3-a21e-4940159dda34" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d03c22a1-0ccc-4aee-912a-d52386f76b33" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:307651fd-71f7-42cc-a644-f82ecb10ee24" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:84e40758-b27c-4838-a498-4d52772cbf29" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2bbd4409-1fd9-429d-bb7c-7297b67a4e34" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:81ee63b0-0a37-42a3-bd7f-3a311cf9e067" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e7bba1ca-c0e5-4e17-92eb-366ab7a9db92" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a45d70f9-79f4-4247-9d96-2b42d3e30b9b" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:61ed1b73-f75f-4001-a7d3-43b7b48627df" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:78a179e1-edb0-419a-bbea-6219015dcd92" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:9fb82cbb-972b-4b04-a283-186ca45b2bd8" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:72a486fa-3ca0-4dc7-8c3a-893ed56ff874" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:773a790c-3265-4a0d-a376-ba6892d1af6e" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:3eea3fe0-fc9f-4ad9-b00d-24bf05e551e2" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:79426a34-3f11-422f-a5d4-c9f78637b00b" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2098f1c4-92af-4141-af33-36f125f2b342" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:fecce9a1-64a0-4bda-8ff9-1bb1abe8b3a2" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b5af1191-be7d-4a06-be65-45abab1003b8" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0f006414-e0e8-40a4-85ed-c126322b3b61" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:7743b60c-a868-41e9-afab-ab2465734f20" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:260bafea-867b-4160-a2d2-b6f0ed52dd36" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:cafdcb5d-4ed8-40e0-8af4-2b986a08ca7d" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a1c33cc3-60c2-4b06-a929-2c3ef8d09dd2" - } - ] + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "DI-16", + "key": "manufacturerPartId" + }, + { + "value": "OMCBYLPHNDTUQYOHK", + "key": "partInstanceId" + }, + { + "value": "OMCBYLPHNDTUQYOHK", + "key": "van" + } + ], + "manufacturingInformation": { + "date": "2016-09-21T11:53:57.000Z", + "country": "DEU" + }, + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "partTypeInformation": { + "manufacturerPartId": "DI-16", + "classification": "product", + "nameAtManufacturer": "Vehicle Combustion" } }, { - "identification": "urn:uuid:52df5f49-3604-4dc2-b72a-013b4bb04185", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "58471477-24", - "key": "manufacturerPartId" - }, - { - "value": "NO-908148776563602876724750", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:2bbd4409-1fd9-429d-bb7c-7297b67a4e34", - "partTypeInformation": { - "manufacturerPartId": "58471477-24", - "customerPartId": "58471477-24", - "classification": "component", - "nameAtManufacturer": "Exterior mirror right", - "nameAtCustomer": "Exterior mirror right" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "77795937-13", + "key": "manufacturerPartId" + }, + { + "value": "NO-228987054676435453412325", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:de9d233e-c371-490b-b02b-092756ccdd42", + "partTypeInformation": { + "manufacturerPartId": "77795937-13", + "customerPartId": "77795937-13", + "classification": "component", + "nameAtManufacturer": "Steering wheel", + "nameAtCustomer": "Steering wheel" } }, { - "identification": "urn:uuid:adfc463f-28be-48cd-85ea-1b0c263da430", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "13769860-47", - "key": "manufacturerPartId" - }, - { - "value": "NO-646893736267377485163715", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:d71d22bf-1fca-49a4-aa39-3b2c4563327e", - "partTypeInformation": { - "manufacturerPartId": "13769860-47", - "customerPartId": "13769860-47", - "classification": "component", - "nameAtManufacturer": "Fender left", - "nameAtCustomer": "Fender right" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "45863316-60", + "key": "manufacturerPartId" + }, + { + "value": "NO-383031694883957480024383", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:625d9e00-b1c2-4d98-a9a7-fea9f00d2521", + "partTypeInformation": { + "manufacturerPartId": "45863316-60", + "customerPartId": "45863316-60", + "classification": "component", + "nameAtManufacturer": "Tires", + "nameAtCustomer": "Tires" } }, { - "identification": "urn:uuid:daf3c1a3-ce92-49f5-91f8-e0f5c723e8ed", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "78141846-87", - "key": "manufacturerPartId" - }, - { - "value": "NO-386314672759223767813755", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:72a486fa-3ca0-4dc7-8c3a-893ed56ff874", - "partTypeInformation": { - "manufacturerPartId": "78141846-87", - "customerPartId": "78141846-87", - "classification": "component", - "nameAtManufacturer": "Starter motor", - "nameAtCustomer": "Starter motor" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "28673126-98", + "key": "manufacturerPartId" + }, + { + "value": "NO-769452578547908494693969", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:94f95beb-2d2e-4275-af82-ef601d25e7db", + "partTypeInformation": { + "manufacturerPartId": "28673126-98", + "customerPartId": "28673126-98", + "classification": "component", + "nameAtManufacturer": "Door r-r", + "nameAtCustomer": "Door rear-right" } }, { - "identification": "urn:uuid:e0f60357-45f7-47d8-b92c-920f4e7e4d6f", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "36643162-35", - "key": "manufacturerPartId" - }, - { - "value": "NO-167672725207122083674446", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:97ddc65b-cb98-44e3-a21e-4940159dda34", - "partTypeInformation": { - "manufacturerPartId": "36643162-35", - "customerPartId": "36643162-35", - "classification": "component", - "nameAtManufacturer": "Fender right", - "nameAtCustomer": "Fender right" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "19073706-76", + "key": "manufacturerPartId" + }, + { + "value": "NO-465118501506511726597363", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:82260db6-7ac1-4b61-9b98-e193cfbfcca4", + "partTypeInformation": { + "manufacturerPartId": "19073706-76", + "customerPartId": "19073706-76", + "classification": "component", + "nameAtManufacturer": "Indicator right", + "nameAtCustomer": "Indicator right" } }, { - "identification": "urn:uuid:863a5fdf-5883-4b00-af0f-a3502452fe2a", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "43501996-98", - "key": "manufacturerPartId" - }, - { - "value": "NO-879915865025278893925907", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:e7bba1ca-c0e5-4e17-92eb-366ab7a9db92", - "partTypeInformation": { - "manufacturerPartId": "43501996-98", - "customerPartId": "43501996-98", - "classification": "component", - "nameAtManufacturer": "Dashboard", - "nameAtCustomer": "Dashboard" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "85023955-75", + "key": "manufacturerPartId" + }, + { + "value": "NO-483981471906326819012285", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:d4e9558c-f75b-437d-8bd5-83fe14bdeeaf", + "partTypeInformation": { + "manufacturerPartId": "85023955-75", + "customerPartId": "85023955-75", + "classification": "component", + "nameAtManufacturer": "Tailgate", + "nameAtCustomer": "Tailgate" } }, { - "identification": "urn:uuid:f652c160-0761-465e-b2bc-8fff4e055030", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "00871379-44", - "key": "manufacturerPartId" - }, - { - "value": "NO-722446122435002273647930", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:0f006414-e0e8-40a4-85ed-c126322b3b61", - "partTypeInformation": { - "manufacturerPartId": "00871379-44", - "customerPartId": "00871379-44", - "classification": "component", - "nameAtManufacturer": "Chassis", - "nameAtCustomer": "Chassis" + "catenaXId": "urn:uuid:a7fc6773-b3f2-4b9e-b0ca-586cbbd51dd9", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:80dd9f05-d4e0-4b14-9436-d9a31865b2a8" } - } + ] }, { - "identification": "urn:uuid:69f30b5b-5b25-4941-8f71-df140f794eff", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "88111709-49", - "key": "manufacturerPartId" - }, - { - "value": "NO-893278288069568267061701", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:b5af1191-be7d-4a06-be65-45abab1003b8", - "partTypeInformation": { - "manufacturerPartId": "88111709-49", - "customerPartId": "88111709-49", - "classification": "component", - "nameAtManufacturer": "Axle part rear", - "nameAtCustomer": "Axle part rear" + "localIdentifiers": [ + { + "value": "BPNL00000003CSGV", + "key": "manufacturerId" + }, + { + "value": "22782277-50", + "key": "manufacturerPartId" + }, + { + "value": "NO-492358453378932046169873", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:a7fc6773-b3f2-4b9e-b0ca-586cbbd51dd9", + "partTypeInformation": { + "manufacturerPartId": "22782277-50", + "customerPartId": "22782277-50", + "classification": "component", + "nameAtManufacturer": "Door f-l", + "nameAtCustomer": "Door front-left" } }, { - "identification": "urn:uuid:98428cbb-4931-4c56-a2a8-4d9793a82a48", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "09002013-68", - "key": "manufacturerPartId" - }, - { - "value": "NO-070172261725229389714140", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:81ee63b0-0a37-42a3-bd7f-3a311cf9e067", - "partTypeInformation": { - "manufacturerPartId": "09002013-68", - "customerPartId": "09002013-68", - "classification": "component", - "nameAtManufacturer": "Trailer coupling", - "nameAtCustomer": "Tailer coupling" + "localIdentifiers": [ + { + "value": "BPNL00000000BJTL", + "key": "manufacturerId" + }, + { + "value": "95657762-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-074211028117767199853993", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:80dd9f05-d4e0-4b14-9436-d9a31865b2a8", + "partTypeInformation": { + "manufacturerPartId": "95657762-59", + "customerPartId": "95657762-59", + "classification": "component", + "nameAtManufacturer": "Door Key", + "nameAtCustomer": "Door Key" } }, { - "identification": "urn:uuid:0457d5cf-9e7f-43a4-a6a7-829e6849c557", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "94421589-82", - "key": "manufacturerPartId" - }, - { - "value": "NO-199366043992660584843192", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:890757b8-e562-4e0c-94f7-bd0806dd258f", - "partTypeInformation": { - "manufacturerPartId": "94421589-82", - "customerPartId": "94421589-82", - "classification": "component", - "nameAtManufacturer": "Engine hood", - "nameAtCustomer": "Engine hood" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "10030939-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-381494136658703739908155", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:6bd19830-3f63-4915-906d-0dd26196b7a6", + "partTypeInformation": { + "manufacturerPartId": "10030939-59", + "customerPartId": "10030939-59", + "classification": "component", + "nameAtManufacturer": "Engine", + "nameAtCustomer": "Engine" } }, { - "identification": "urn:uuid:f41725d2-3aa0-4f5d-8f87-8de2442c82c1", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "32494586-73", - "key": "manufacturerPartId" - }, - { - "value": "NO-462085552967082714371063", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:2a1bd6c6-69c3-41b6-8154-596a79567017", - "partTypeInformation": { - "manufacturerPartId": "32494586-73", - "customerPartId": "32494586-73", - "classification": "component", - "nameAtManufacturer": "Differential Gear", - "nameAtCustomer": "Differential Gear" - } - } + "diameter": 560, + "length": 843, + "width": 762, + "weight": 180, + "height": 711 }, { - "identification": "urn:uuid:2dba39d7-5d79-4c62-8cb6-ad130a5b5dcb", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "45863316-60", - "key": "manufacturerPartId" - }, - { - "value": "NO-538013715297606720098957", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:260bafea-867b-4160-a2d2-b6f0ed52dd36", - "partTypeInformation": { - "manufacturerPartId": "45863316-60", - "customerPartId": "45863316-60", - "classification": "component", - "nameAtManufacturer": "Tires", - "nameAtCustomer": "Tires" + "catenaXId": "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3", + "childParts": [ + { + "quantity": { + "quantityNumber": "0.2014", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1c9e90dc-1135-402c-8a4f-11b4e6e8ca6e" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:6ac8d26d-332f-450b-b281-2db2e4ed161a" + }, + { + "quantity": { + "quantityNumber": "0.2341", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:44516a17-96a6-48ea-be5f-9c20b71f8220" } - } + ] }, { - "identification": "urn:uuid:2d8cbb25-b183-475c-a8a7-aa62dd8a55cf", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "22768257-25", - "key": "manufacturerPartId" - }, - { - "value": "NO-240876855803097128400146", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:307651fd-71f7-42cc-a644-f82ecb10ee24", - "partTypeInformation": { - "manufacturerPartId": "22768257-25", - "customerPartId": "22768257-25", - "classification": "component", - "nameAtManufacturer": "Bumper rear", - "nameAtCustomer": "Bumper rear" + "localIdentifiers": [ + { + "value": "BPNL00000003B2OM", + "key": "manufacturerId" + }, + { + "value": "1O222E8-43", + "key": "manufacturerPartId" + }, + { + "value": "NO-454520675807492820351595", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3", + "partTypeInformation": { + "manufacturerPartId": "1O222E8-43", + "customerPartId": "1O222E8-43", + "classification": "component", + "nameAtManufacturer": "Transmission", + "nameAtCustomer": "Transmission" } }, { - "identification": "urn:uuid:49a2b951-3591-4640-81aa-ebe7eca6b030", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "77795937-13", - "key": "manufacturerPartId" - }, - { - "value": "NO-564001268648866994483869", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:a45d70f9-79f4-4247-9d96-2b42d3e30b9b", - "partTypeInformation": { - "manufacturerPartId": "77795937-13", - "customerPartId": "77795937-13", - "classification": "component", - "nameAtManufacturer": "Steering wheel", - "nameAtCustomer": "Steering wheel" - } - } + "diameter": 380, + "length": 810, + "width": 590, + "weight": 85, + "height": 610 }, { - "identification": "urn:uuid:9df8b494-80c8-47d5-bd3f-763de4f750a5", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "78744126-74", - "key": "manufacturerPartId" - }, - { - "value": "NO-324542046671255047372057", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:2098f1c4-92af-4141-af33-36f125f2b342", - "partTypeInformation": { - "manufacturerPartId": "78744126-74", - "customerPartId": "78744126-74", - "classification": "component", - "nameAtManufacturer": "Taillight front", - "nameAtCustomer": "Taillight front" - } - } + "catenaXId": "urn:uuid:44516a17-96a6-48ea-be5f-9c20b71f8220", + "childParts": [] }, { - "identification": "urn:uuid:1c0dc9f0-7bbe-4e91-bbc3-d4d677b07e99", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "85023955-75", - "key": "manufacturerPartId" - }, - { - "value": "NO-064969896800237848819039", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:000eee07-2df6-4e67-bc6a-6dd6b30d1dea", - "partTypeInformation": { - "manufacturerPartId": "85023955-75", - "customerPartId": "85023955-75", - "classification": "component", - "nameAtManufacturer": "Tailgate", - "nameAtCustomer": "Tailgate" + "catenaXId": "urn:uuid:6ac8d26d-332f-450b-b281-2db2e4ed161a", + "childParts": [ + { + "quantity": { + "quantityNumber": "0.1908", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:4cf755d5-c54d-4049-bd34-ccb566bd7d08" } - } + ] }, { - "identification": "urn:uuid:aa9c8617-70ca-4935-9792-034520e4cb53", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "19073706-76", - "key": "manufacturerPartId" - }, - { - "value": "NO-539036725320951616116252", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:78a179e1-edb0-419a-bbea-6219015dcd92", - "partTypeInformation": { - "manufacturerPartId": "19073706-76", - "customerPartId": "19073706-76", - "classification": "component", - "nameAtManufacturer": "Indicator right", - "nameAtCustomer": "Indicator right" + "localIdentifiers": [ + { + "value": "BPNL00000003B3NX", + "key": "manufacturerId" + }, + { + "value": "66755R5-14", + "key": "manufacturerPartId" + }, + { + "value": "NO-585940955748527736354913", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:6ac8d26d-332f-450b-b281-2db2e4ed161a", + "partTypeInformation": { + "manufacturerPartId": "66755R5-14", + "customerPartId": "66755R5-14", + "classification": "component", + "nameAtManufacturer": "Sensor", + "nameAtCustomer": "Sensor" } }, { - "identification": "urn:uuid:ad908218-758e-4529-9b8a-5f0350047c19", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "73849201-61", - "key": "manufacturerPartId" - }, - { - "value": "NO-083052568348899541197941", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:719fa2fe-5462-43d0-a240-7ead01808de7", - "partTypeInformation": { - "manufacturerPartId": "73849201-61", - "customerPartId": "73849201-61", - "classification": "component", - "nameAtManufacturer": "Catalysator", - "nameAtCustomer": "Catalysator" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "15635759-16", + "key": "manufacturerPartId" + }, + { + "value": "NO-313649659285446108570445", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:571cca8d-ceda-458e-a51c-69bcf53fa1ad", + "partTypeInformation": { + "manufacturerPartId": "15635759-16", + "customerPartId": "15635759-16", + "classification": "component", + "nameAtManufacturer": "Door r-l", + "nameAtCustomer": "Door rear-left" } }, { - "identification": "urn:uuid:35b99c22-8de0-4c7f-8382-2d1929ddbff5", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "61184040-23", - "key": "manufacturerPartId" - }, - { - "value": "NO-826529578552558325865643", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:79426a34-3f11-422f-a5d4-c9f78637b00b", - "partTypeInformation": { - "manufacturerPartId": "61184040-23", - "customerPartId": "61184040-23", - "classification": "component", - "nameAtManufacturer": "Taillight rear", - "nameAtCustomer": "Taillight rear" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "13769860-47", + "key": "manufacturerPartId" + }, + { + "value": "NO-992059506619147345195164", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:f473c6ec-3920-433a-89cd-c3b914ed6963", + "partTypeInformation": { + "manufacturerPartId": "13769860-47", + "customerPartId": "13769860-47", + "classification": "component", + "nameAtManufacturer": "Fender left", + "nameAtCustomer": "Fender right" } }, { - "identification": "urn:uuid:0096ca7a-233c-48a1-b7e5-ab756d66ee82", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "67034319-44", - "key": "manufacturerPartId" - }, - { - "value": "NO-093632624435445274574834", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:f2588c21-e82b-4049-8795-06e0a7cf63bd", - "partTypeInformation": { - "manufacturerPartId": "67034319-44", - "customerPartId": "67034319-44", - "classification": "component", - "nameAtManufacturer": "Turbocharger", - "nameAtCustomer": "Turbocharger" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "58471477-24", + "key": "manufacturerPartId" + }, + { + "value": "NO-256006458590897684674690", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:719cff6f-8425-4a9a-a20f-1ddf92873d57", + "partTypeInformation": { + "manufacturerPartId": "58471477-24", + "customerPartId": "58471477-24", + "classification": "component", + "nameAtManufacturer": "Exterior mirror right", + "nameAtCustomer": "Exterior mirror right" } }, { - "identification": "urn:uuid:81b5294c-a447-4431-be99-4efcf9088b09", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "65529521-37", - "key": "manufacturerPartId" - }, - { - "value": "NO-075513358163357493109718", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:84e40758-b27c-4838-a498-4d52772cbf29", - "partTypeInformation": { - "manufacturerPartId": "65529521-37", - "customerPartId": "65529521-37", - "classification": "component", - "nameAtManufacturer": "Exterior mirror left", - "nameAtCustomer": "Exterior mirror left" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "78141846-87", + "key": "manufacturerPartId" + }, + { + "value": "NO-159932335465198259357175", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:0e90d4a6-8ccc-483b-a786-bfac2a2d6553", + "partTypeInformation": { + "manufacturerPartId": "78141846-87", + "customerPartId": "78141846-87", + "classification": "component", + "nameAtManufacturer": "Starter motor", + "nameAtCustomer": "Starter motor" } }, { - "identification": "urn:uuid:b1ec78a6-d772-481a-8aa6-0cd8b44d195e", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "20125432-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-271630709164214690650633", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:61ed1b73-f75f-4001-a7d3-43b7b48627df", - "partTypeInformation": { - "manufacturerPartId": "20125432-59", - "customerPartId": "20125432-59", - "classification": "component", - "nameAtManufacturer": "Indicator left", - "nameAtCustomer": "Indicator left" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "88111709-49", + "key": "manufacturerPartId" + }, + { + "value": "NO-673420918684432228459139", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:b2805664-6d1e-481a-b270-bc75cb67ad63", + "partTypeInformation": { + "manufacturerPartId": "88111709-49", + "customerPartId": "88111709-49", + "classification": "component", + "nameAtManufacturer": "Axle part rear", + "nameAtCustomer": "Axle part rear" } }, { - "identification": "urn:uuid:08868094-b587-4b15-96c3-bd8e07f54078", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "08901347-87", - "key": "manufacturerPartId" - }, - { - "value": "NO-302718244054482918723795", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:7743b60c-a868-41e9-afab-ab2465734f20", - "partTypeInformation": { - "manufacturerPartId": "08901347-87", - "customerPartId": "08901347-87", - "classification": "component", - "nameAtManufacturer": "Rims", - "nameAtCustomer": "Rims" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "12093297-03", + "key": "manufacturerPartId" + }, + { + "value": "NO-482943843990617202683900", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:c1bbd0b8-b1df-40c5-b19a-714798799ffe", + "partTypeInformation": { + "manufacturerPartId": "12093297-03", + "customerPartId": "12093297-03", + "classification": "component", + "nameAtManufacturer": "Axle part front", + "nameAtCustomer": "Axle part front" } }, { - "identification": "urn:uuid:c4556be3-987d-46f6-9c34-d99a2841719c", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "81324139-23", - "key": "manufacturerPartId" - }, - { - "value": "NO-638111336634345368870915", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:773a790c-3265-4a0d-a376-ba6892d1af6e", - "partTypeInformation": { - "manufacturerPartId": "81324139-23", - "customerPartId": "81324139-23", - "classification": "component", - "nameAtManufacturer": "Alternator", - "nameAtCustomer": "Alternator" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "20125432-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-777927484786811719267774", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:eab9525d-79c0-4c3c-83dd-4815f2703ed1", + "partTypeInformation": { + "manufacturerPartId": "20125432-59", + "customerPartId": "20125432-59", + "classification": "component", + "nameAtManufacturer": "Indicator left", + "nameAtCustomer": "Indicator left" } }, { - "identification": "urn:uuid:6c2751d5-bdab-4919-9d22-07fe248934da", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "28673126-98", - "key": "manufacturerPartId" - }, - { - "value": "NO-200055536647191451152446", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:fcfdf8a6-80ed-4345-a52d-ae440c0a2bd5", - "partTypeInformation": { - "manufacturerPartId": "28673126-98", - "customerPartId": "28673126-98", - "classification": "component", - "nameAtManufacturer": "Door r-r", - "nameAtCustomer": "Door rear-right" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "57929013-09", + "key": "manufacturerPartId" + }, + { + "value": "NO-506968858375705670698906", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:1b96d3d5-05e7-4da7-9915-2ed834316ca4", + "partTypeInformation": { + "manufacturerPartId": "57929013-09", + "customerPartId": "57929013-09", + "classification": "component", + "nameAtManufacturer": "AC compressor", + "nameAtCustomer": "Air conditioning compressor" } }, { - "identification": "urn:uuid:a1069d9c-90ee-4dcc-ad94-a79b944b6037", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "54165444-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-802534848713482605851178", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:d03c22a1-0ccc-4aee-912a-d52386f76b33", - "partTypeInformation": { - "manufacturerPartId": "54165444-59", - "customerPartId": "54165444-59", - "classification": "component", - "nameAtManufacturer": "Bumper front", - "nameAtCustomer": "Bumper front" + "catenaXId": "urn:uuid:aacf2b0e-5de2-4952-862e-2b47a12e59bc", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:d25ba21d-55d8-4ba0-9a3e-2df4f199a08a" } - } + ] }, { - "identification": "urn:uuid:1afe5332-3b90-45e8-8c75-072dc2baa5b3", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "15635759-16", - "key": "manufacturerPartId" - }, - { - "value": "NO-963656354707307302875798", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:7c4993ad-9bed-46c8-a9b4-261073a0a3b5", - "partTypeInformation": { - "manufacturerPartId": "15635759-16", - "customerPartId": "15635759-16", - "classification": "component", - "nameAtManufacturer": "Door r-l", - "nameAtCustomer": "Door rear-left" + "localIdentifiers": [ + { + "value": "BPNL00000003CSGV", + "key": "manufacturerId" + }, + { + "value": "95657362-64", + "key": "manufacturerPartId" + }, + { + "value": "NO-269076507870504883857636", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:aacf2b0e-5de2-4952-862e-2b47a12e59bc", + "partTypeInformation": { + "manufacturerPartId": "33740332-54", + "customerPartId": "33740332-54", + "classification": "component", + "nameAtManufacturer": "Door f-r", + "nameAtCustomer": "Door front-right" } }, { - "identification": "urn:uuid:54c6cf01-3b88-414b-8033-fbc15790b7b7", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "57929013-09", - "key": "manufacturerPartId" - }, - { - "value": "NO-918989812727935150231376", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:3eea3fe0-fc9f-4ad9-b00d-24bf05e551e2", - "partTypeInformation": { - "manufacturerPartId": "57929013-09", - "customerPartId": "57929013-09", - "classification": "component", - "nameAtManufacturer": "AC compressor", - "nameAtCustomer": "Air conditioning compressor" + "localIdentifiers": [ + { + "value": "BPNL00000000BJTL", + "key": "manufacturerId" + }, + { + "value": "95657762-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-002875190805601631753761", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:d25ba21d-55d8-4ba0-9a3e-2df4f199a08a", + "partTypeInformation": { + "manufacturerPartId": "95657762-59", + "customerPartId": "95657762-59", + "classification": "component", + "nameAtManufacturer": "Door Key", + "nameAtCustomer": "Door Key" } }, { - "identification": "urn:uuid:df94baf6-ba7c-4866-bd13-8fa71b2e39e4", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "45415162-57", - "key": "manufacturerPartId" - }, - { - "value": "NO-011521004327099577969476", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:9fb82cbb-972b-4b04-a283-186ca45b2bd8", - "partTypeInformation": { - "manufacturerPartId": "45415162-57", - "customerPartId": "45415162-57", - "classification": "component", - "nameAtManufacturer": "Led headlight", - "nameAtCustomer": "Led headlight" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "54165444-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-117123994992309633101883", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:cb1e4dcd-31a0-47df-994b-f0f541cbaf9f", + "partTypeInformation": { + "manufacturerPartId": "54165444-59", + "customerPartId": "54165444-59", + "classification": "component", + "nameAtManufacturer": "Bumper front", + "nameAtCustomer": "Bumper front" } }, { - "identification": "urn:uuid:186991a2-ffe0-49d0-b41f-8c063af5de36", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "12093297-03", - "key": "manufacturerPartId" - }, - { - "value": "NO-429253287102049252374382", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:fecce9a1-64a0-4bda-8ff9-1bb1abe8b3a2", - "partTypeInformation": { - "manufacturerPartId": "12093297-03", - "customerPartId": "12093297-03", - "classification": "component", - "nameAtManufacturer": "Axle part front", - "nameAtCustomer": "Axle part front" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "45415162-57", + "key": "manufacturerPartId" + }, + { + "value": "NO-178373350581495890032030", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:cbb53a71-fba4-4753-868b-e91721d8f7b1", + "partTypeInformation": { + "manufacturerPartId": "45415162-57", + "customerPartId": "45415162-57", + "classification": "component", + "nameAtManufacturer": "Led headlight", + "nameAtCustomer": "Led headlight" } }, { - "identification": "urn:uuid:723c9179-c9a7-4488-990e-4b1343e48e22", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003CSGV", - "key": "manufacturerId" - }, - { - "value": "22782277-50", - "key": "manufacturerPartId" - }, - { - "value": "NO-243840928872492356056649", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:504cc0c4-4199-43bf-83d5-7ce575cf2170", - "partTypeInformation": { - "manufacturerPartId": "22782277-50", - "customerPartId": "22782277-50", - "classification": "component", - "nameAtManufacturer": "Door f-l", - "nameAtCustomer": "Door front-left" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "32494586-73", + "key": "manufacturerPartId" + }, + { + "value": "NO-158280180102316527774467", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:9663defa-684b-4e75-80d5-82d001ab217a", + "partTypeInformation": { + "manufacturerPartId": "32494586-73", + "customerPartId": "32494586-73", + "classification": "component", + "nameAtManufacturer": "Differential Gear", + "nameAtCustomer": "Differential Gear" } }, { - "identification": "urn:uuid:8859b71e-5723-49b9-8157-d797e4b9588d", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:504cc0c4-4199-43bf-83d5-7ce575cf2170", - "childParts": [ - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:19488393-c309-4f69-babb-ec2a2414e567" - } - ] + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "67034319-44", + "key": "manufacturerPartId" + }, + { + "value": "NO-572960754949710555167656", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:9107e586-9bfa-4c82-b81c-6c8ae0ee36f6", + "partTypeInformation": { + "manufacturerPartId": "67034319-44", + "customerPartId": "67034319-44", + "classification": "component", + "nameAtManufacturer": "Turbocharger", + "nameAtCustomer": "Turbocharger" } }, { - "identification": "urn:uuid:d6cbb08c-2106-48fb-986f-9ed32942e250", - "aspectType": "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension", - "payload": { - "diameter": "560", - "length": "843", - "width": "762", - "weight": "180", - "height": "711" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "22768257-25", + "key": "manufacturerPartId" + }, + { + "value": "NO-154372580381393251774908", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:0bfbebba-8a1c-41a3-8199-b1075f327f7a", + "partTypeInformation": { + "manufacturerPartId": "22768257-25", + "customerPartId": "22768257-25", + "classification": "component", + "nameAtManufacturer": "Bumper rear", + "nameAtCustomer": "Bumper rear" } }, { - "identification": "urn:uuid:871c3018-cc76-4dd7-9686-baa00f3531f9", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "10030939-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-774702498878060917369279", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:4921d6d6-bb0e-488a-bfcb-43aa98f770f1", - "partTypeInformation": { - "manufacturerPartId": "10030939-59", - "customerPartId": "10030939-59", - "classification": "component", - "nameAtManufacturer": "Engine", - "nameAtCustomer": "Engine" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "36643162-35", + "key": "manufacturerPartId" + }, + { + "value": "NO-414351818865518400825673", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:1294c992-af34-4779-b13c-5cae0fd521fb", + "partTypeInformation": { + "manufacturerPartId": "36643162-35", + "customerPartId": "36643162-35", + "classification": "component", + "nameAtManufacturer": "Fender right", + "nameAtCustomer": "Fender right" } }, { - "identification": "urn:uuid:228a4570-9306-46af-83eb-dfebd152ad5b", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B5MJ", - "key": "manufacturerId" - }, - { - "value": "22687V8-83", - "key": "manufacturerPartId" - }, - { - "value": "NO-686376458181124273671236", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:a1c33cc3-60c2-4b06-a929-2c3ef8d09dd2", - "partTypeInformation": { - "manufacturerPartId": "22687V8-83", - "customerPartId": "22687V8-83", - "classification": "component", - "nameAtManufacturer": "ECU", - "nameAtCustomer": "ECU" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "43501996-98", + "key": "manufacturerPartId" + }, + { + "value": "NO-793594087536635898069838", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:34d50337-e11f-4f41-9a48-87cc986d5449", + "partTypeInformation": { + "manufacturerPartId": "43501996-98", + "customerPartId": "43501996-98", + "classification": "component", + "nameAtManufacturer": "Dashboard", + "nameAtCustomer": "Dashboard" } }, { - "identification": "urn:uuid:6ec4edf2-98e4-4a93-a002-7f16237067b9", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:a1c33cc3-60c2-4b06-a929-2c3ef8d09dd2", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.3301", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f38af026-2030-4da6-bcce-6af211400feb" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6b7688db-ca94-4056-9e94-98b8f49bbf5e" - }, - { - "quantity": { - "quantityNumber": "0.2001", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f6dc159a-c93d-4a61-a9c6-4985e6ffca31" - } - ] - } + "catenaXId": "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da", + "childParts": [ + { + "quantity": { + "quantityNumber": "0.3301", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:d0545b54-8839-4b13-b6c5-f19f0b7c9105" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:eabe1577-a594-409f-9da3-92dfa5b89354" + }, + { + "quantity": { + "quantityNumber": "0.2001", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:04baed27-a656-4cee-be2a-d2c99fa9c574" + } + ] }, { - "identification": "urn:uuid:cb76b2ac-0ad8-4677-973a-a4b28d0631bc", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000000BJTL", - "key": "manufacturerId" - }, - { - "value": "95657762-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-889156440760940480818067", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:19488393-c309-4f69-babb-ec2a2414e567", - "partTypeInformation": { - "manufacturerPartId": "95657762-59", - "customerPartId": "95657762-59", - "classification": "component", - "nameAtManufacturer": "Door Key", - "nameAtCustomer": "Door Key" + "localIdentifiers": [ + { + "value": "BPNL00000003B5MJ", + "key": "manufacturerId" + }, + { + "value": "45869M7-69", + "key": "manufacturerPartId" + }, + { + "value": "NO-534035086445797049897887", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da", + "partTypeInformation": { + "manufacturerPartId": "45869M7-69", + "customerPartId": "45869M7-69", + "classification": "component", + "nameAtManufacturer": "ECU", + "nameAtCustomer": "ECU" } }, { - "identification": "urn:uuid:97401abe-2b7a-4180-840e-ae273214a705", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "52344G6-17", - "key": "manufacturerPartId" - }, - { - "value": "NO-988449408817847876659669", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:f6dc159a-c93d-4a61-a9c6-4985e6ffca31", - "partTypeInformation": { - "manufacturerPartId": "52344G6-17", - "customerPartId": "52344G6-17", - "classification": "component", - "nameAtManufacturer": "Engineering Plastics", - "nameAtCustomer": "Engineering Plastics" + "catenaXId": "urn:uuid:eabe1577-a594-409f-9da3-92dfa5b89354", + "childParts": [ + { + "quantity": { + "quantityNumber": "0.1908", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:b6496465-27fc-489e-9470-855215868bb2" } - } + ] }, { - "identification": "urn:uuid:a7686344-8d0f-48a5-8f1e-05cd035e5ce5", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003CSGV", - "key": "manufacturerId" - }, - { - "value": "95657362-64", - "key": "manufacturerPartId" - }, - { - "value": "NO-904523309637402603975870", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:e4ee6157-108d-4dc5-b47b-08a317d1e2c5", - "partTypeInformation": { - "manufacturerPartId": "33740332-54", - "customerPartId": "33740332-54", - "classification": "component", - "nameAtManufacturer": "Door f-r", - "nameAtCustomer": "Door front-right" + "localIdentifiers": [ + { + "value": "BPNL00000003B3NX", + "key": "manufacturerId" + }, + { + "value": "45862S2-48", + "key": "manufacturerPartId" + }, + { + "value": "NO-150179965154423831568535", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:eabe1577-a594-409f-9da3-92dfa5b89354", + "partTypeInformation": { + "manufacturerPartId": "45862S2-48", + "customerPartId": "45862S2-48", + "classification": "component", + "nameAtManufacturer": "Sensor", + "nameAtCustomer": "Sensor" } }, { - "identification": "urn:uuid:e78158c7-0992-4a07-9d38-efc9888a82ed", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:e4ee6157-108d-4dc5-b47b-08a317d1e2c5", - "childParts": [ - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f680d61e-5c04-4dd1-9f7f-995719f20a48" - } - ] + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "manufacturerId" + }, + { + "value": "92115H1-78", + "key": "manufacturerPartId" + }, + { + "value": "NO-179789149406444356724807", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:04baed27-a656-4cee-be2a-d2c99fa9c574", + "partTypeInformation": { + "manufacturerPartId": "92115H1-78", + "customerPartId": "92115H1-78", + "classification": "component", + "nameAtManufacturer": "Engineering Plastics", + "nameAtCustomer": "Engineering Plastics" } }, { - "identification": "urn:uuid:cd50d9ad-8b2c-45b4-ae10-119fbb5cfa67", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:cafdcb5d-4ed8-40e0-8af4-2b986a08ca7d", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.2014", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:57ff38c0-ba9b-42e0-8950-1b1c062efe04" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:56f09d9a-7004-46e8-a7e1-5a4a4caecced" - }, - { - "quantity": { - "quantityNumber": "0.2341", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b5a3dc95-c4a3-482f-b5ef-89af7d6e6348" - } - ] + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "94421589-82", + "key": "manufacturerPartId" + }, + { + "value": "NO-833143677077218520998127", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:5ca6c6f0-3ac2-4b90-b88c-a28935646d55", + "partTypeInformation": { + "manufacturerPartId": "94421589-82", + "customerPartId": "94421589-82", + "classification": "component", + "nameAtManufacturer": "Engine hood", + "nameAtCustomer": "Engine hood" } }, { - "identification": "urn:uuid:b655ee04-a45e-4d83-85fd-b6db41054365", - "aspectType": "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension", - "payload": { - "diameter": "380", - "length": "810", - "width": "590", - "weight": "85", - "height": "610" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "09002013-68", + "key": "manufacturerPartId" + }, + { + "value": "NO-502228708594450719353786", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:744ec0a4-575b-47b4-9c97-b5eaad60b51e", + "partTypeInformation": { + "manufacturerPartId": "09002013-68", + "customerPartId": "09002013-68", + "classification": "component", + "nameAtManufacturer": "Trailer coupling", + "nameAtCustomer": "Tailer coupling" } }, { - "identification": "urn:uuid:3f566e36-ba6a-44ed-9a3a-f6da96dd8652", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B2OM", - "key": "manufacturerId" - }, - { - "value": "1O222E8-43", - "key": "manufacturerPartId" - }, - { - "value": "NO-952083473031443415352403", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:cafdcb5d-4ed8-40e0-8af4-2b986a08ca7d", - "partTypeInformation": { - "manufacturerPartId": "1O222E8-43", - "customerPartId": "1O222E8-43", - "classification": "component", - "nameAtManufacturer": "Transmission", - "nameAtCustomer": "Transmission" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "61184040-23", + "key": "manufacturerPartId" + }, + { + "value": "NO-561937303475455770405543", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:fc7f69b3-27d8-40a8-866e-e4e79608d788", + "partTypeInformation": { + "manufacturerPartId": "61184040-23", + "customerPartId": "61184040-23", + "classification": "component", + "nameAtManufacturer": "Taillight rear", + "nameAtCustomer": "Taillight rear" } }, { - "identification": "urn:uuid:3c4443b5-b2be-4a89-8451-89104bd76028", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000000BJTL", - "key": "manufacturerId" - }, - { - "value": "95657762-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-447398973469390545470164", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:f680d61e-5c04-4dd1-9f7f-995719f20a48", - "partTypeInformation": { - "manufacturerPartId": "95657762-59", - "customerPartId": "95657762-59", - "classification": "component", - "nameAtManufacturer": "Door Key", - "nameAtCustomer": "Door Key" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "73849201-61", + "key": "manufacturerPartId" + }, + { + "value": "NO-042618127666918570970235", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:66488d8e-893a-4f4d-b650-e921ad5223e0", + "partTypeInformation": { + "manufacturerPartId": "73849201-61", + "customerPartId": "73849201-61", + "classification": "component", + "nameAtManufacturer": "Catalysator", + "nameAtCustomer": "Catalysator" } }, { - "identification": "urn:uuid:b109b9fc-48e9-4436-b9e3-8e8297e3dcb6", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:b5a3dc95-c4a3-482f-b5ef-89af7d6e6348", - "childParts": [] + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "78744126-74", + "key": "manufacturerPartId" + }, + { + "value": "NO-845276168850633063410003", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:4870af61-d8e5-4923-b8b9-e43bab6e555b", + "partTypeInformation": { + "manufacturerPartId": "78744126-74", + "customerPartId": "78744126-74", + "classification": "component", + "nameAtManufacturer": "Taillight front", + "nameAtCustomer": "Taillight front" } }, { - "identification": "urn:uuid:12914990-8662-4994-b1bd-9df34a7a77f3", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B3NX", - "key": "manufacturerId" - }, - { - "value": "60410Y4-22", - "key": "manufacturerPartId" - }, - { - "value": "NO-962799430095473385519860", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:6b7688db-ca94-4056-9e94-98b8f49bbf5e", - "partTypeInformation": { - "manufacturerPartId": "60410Y4-22", - "customerPartId": "60410Y4-22", - "classification": "component", - "nameAtManufacturer": "Sensor", - "nameAtCustomer": "Sensor" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "00871379-44", + "key": "manufacturerPartId" + }, + { + "value": "NO-933687301502317538061233", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:682f4e8e-2157-45ed-8833-0e51d6f4b555", + "partTypeInformation": { + "manufacturerPartId": "00871379-44", + "customerPartId": "00871379-44", + "classification": "component", + "nameAtManufacturer": "Chassis", + "nameAtCustomer": "Chassis" } }, { - "identification": "urn:uuid:6887f302-53c8-443e-a77a-dca078266ac4", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:6b7688db-ca94-4056-9e94-98b8f49bbf5e", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.1908", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e6165b71-d315-4282-b874-bd35331d1dde" - } - ] + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "65529521-37", + "key": "manufacturerPartId" + }, + { + "value": "NO-040964449149119380741575", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:da6d0c77-2318-4cf0-b72a-602b758c4893", + "partTypeInformation": { + "manufacturerPartId": "65529521-37", + "customerPartId": "65529521-37", + "classification": "component", + "nameAtManufacturer": "Exterior mirror left", + "nameAtCustomer": "Exterior mirror left" } }, { - "identification": "urn:uuid:d8ca82d5-b10d-4ec9-8321-7f9f475ad730", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:56f09d9a-7004-46e8-a7e1-5a4a4caecced", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.1908", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:107d88d1-f24c-4f73-b099-254950609e91" - } - ] + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "08901347-87", + "key": "manufacturerPartId" + }, + { + "value": "NO-196930078703628145562555", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:b584ac7a-73b0-4d8b-8dff-a14dad6a8787", + "partTypeInformation": { + "manufacturerPartId": "08901347-87", + "customerPartId": "08901347-87", + "classification": "component", + "nameAtManufacturer": "Rims", + "nameAtCustomer": "Rims" } }, { - "identification": "urn:uuid:95511b93-ce70-41ca-b8cd-4930fae42229", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B3NX", - "key": "manufacturerId" - }, - { - "value": "73940B2-37", - "key": "manufacturerPartId" - }, - { - "value": "NO-030296983042821237477955", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:56f09d9a-7004-46e8-a7e1-5a4a4caecced", - "partTypeInformation": { - "manufacturerPartId": "73940B2-37", - "customerPartId": "73940B2-37", - "classification": "component", - "nameAtManufacturer": "Sensor", - "nameAtCustomer": "Sensor" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "81324139-23", + "key": "manufacturerPartId" + }, + { + "value": "NO-447510894747375170043335", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:12236481-0285-44d8-810f-766c676a0298", + "partTypeInformation": { + "manufacturerPartId": "81324139-23", + "customerPartId": "81324139-23", + "classification": "component", + "nameAtManufacturer": "Alternator", + "nameAtCustomer": "Alternator" } } ] -} +} \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-relationships.json b/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-relationships.json index 701169cc1c..b59a842a53 100644 --- a/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-relationships.json +++ b/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-relationships.json @@ -1,7 +1,7 @@ { "relationships": [ { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -13,12 +13,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6cd45b1b-d58a-4cb6-af22-a8a06052492a" + "childCatenaXId": "urn:uuid:f39b5055-fdc1-463d-8621-9d0e04feed92" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -30,12 +30,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:90581d63-af84-4284-8c66-4cbd07d9c680" + "childCatenaXId": "urn:uuid:0d18c568-3e2c-468a-b3b6-005b0bbb0b4f" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -47,12 +47,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:144225c7-1101-49a9-88c0-c7d04547cf7f" + "childCatenaXId": "urn:uuid:7ad788d4-fb9d-47e7-984e-bdef6d9b4fcc" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -64,12 +64,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ac326bc7-3ecd-4f09-ad9b-8384b5be8ebb" + "childCatenaXId": "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -81,12 +81,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:9d0987b4-539f-4b29-b07b-dcd841befd2b" + "childCatenaXId": "urn:uuid:c98dc077-f0fe-423d-8d74-48ef630232e7" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -98,12 +98,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:bb308242-ee6f-4339-82a9-64c40e7f8913" + "childCatenaXId": "urn:uuid:cf26332b-250a-4e75-a971-e01970e8e04e" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -115,12 +115,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2c398681-7ab5-4812-8c57-521d0b0af07f" + "childCatenaXId": "urn:uuid:14d1edce-921f-48e1-a827-2bbf90146d09" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -132,12 +132,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:52ceb54d-3b15-41d2-9b0e-f05d00767dea" + "childCatenaXId": "urn:uuid:0df8a9d4-1410-4c42-8824-ce45ad5dcad6" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -149,12 +149,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6fe17840-60fb-45e8-87d0-15b9b2c4ba17" + "childCatenaXId": "urn:uuid:35c78eca-db53-442c-9e01-467fc22c9434" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -166,12 +166,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:095a5cd5-0295-442e-8540-dbc839498774" + "childCatenaXId": "urn:uuid:d2f93c23-6fb6-4585-b3cb-c0c91269e4fd" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -183,12 +183,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ab096d16-e53d-4216-8b5f-be57f83a278a" + "childCatenaXId": "urn:uuid:24d2e568-e161-4eb6-b599-9e1dee3cd333" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -200,12 +200,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:adf502d3-0cb4-40ba-b90f-59807ca8f2f3" + "childCatenaXId": "urn:uuid:6e1fd2a3-5350-4492-9ac2-163eb62094e3" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -217,12 +217,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0eefc461-f341-4f71-9072-7291356a1c6d" + "childCatenaXId": "urn:uuid:691ec9f3-22fe-49f8-97af-697bcdb903a8" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -234,12 +234,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:820db5a1-18ab-4896-9a77-33eff163dd8f" + "childCatenaXId": "urn:uuid:879f66ad-a5c5-48d4-bda3-18c192423a63" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -251,12 +251,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f25037bd-1525-41af-97ca-ae51581075a4" + "childCatenaXId": "urn:uuid:2bfe82e9-565b-4d55-80a8-4b6a61d33f20" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -268,12 +268,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:babced29-f4bc-4dbf-9396-f0bb3bd37965" + "childCatenaXId": "urn:uuid:e97af751-4743-4884-8544-d29e26313c43" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -285,12 +285,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:bdc6a49d-6d3c-444e-85ff-2262e4650b35" + "childCatenaXId": "urn:uuid:2bafe7e7-e1c4-46f1-8da4-133dc4b92deb" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -302,12 +302,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:abdeec09-79cf-4c4e-9a0e-687496fd0944" + "childCatenaXId": "urn:uuid:81a65eb2-be1d-4bb4-ab39-9f859b282bc5" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -319,12 +319,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:03bd9690-8127-4275-bdfb-3d9d7b0b3ecc" + "childCatenaXId": "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -336,12 +336,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:5cd50f24-1885-4f3e-81a1-a2051f69382a" + "childCatenaXId": "urn:uuid:a79aa73d-0d8c-4d84-9607-f21f039c8d84" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -353,12 +353,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:103a27de-f422-49b4-bc10-e1a157230fdd" + "childCatenaXId": "urn:uuid:b274c885-0a36-4d74-ad8a-dbc2fb951a8c" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -370,12 +370,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:af727506-b369-469b-829e-0d0b10db2f49" + "childCatenaXId": "urn:uuid:7f7d23b1-d951-4297-8b26-dcab953da0c1" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -387,12 +387,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:1a044db4-589c-4bd0-bfdd-fb0a4938fab3" + "childCatenaXId": "urn:uuid:d2d2b3b9-818f-4dc0-b77b-8c851d0c0af2" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -404,12 +404,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:adb2b086-8edf-4ae6-bb3f-7b4338e136a5" + "childCatenaXId": "urn:uuid:a609b239-d015-4f37-a8eb-5a1956756ab2" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -421,12 +421,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:40fbf943-3965-4574-8435-5aec0752b777" + "childCatenaXId": "urn:uuid:26d7bebc-263b-4874-8222-971a2720a355" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -438,12 +438,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2591039c-e81c-4347-8a70-c4a2eba0bcd9" + "childCatenaXId": "urn:uuid:698fe434-5dc2-4c6c-80ff-d5a40223f52f" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -455,12 +455,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:43dd6a52-24c3-4ba1-8a7f-d80ce0b3dc79" + "childCatenaXId": "urn:uuid:2aa238f2-bcb7-4037-bb65-824610f5b23a" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -472,12 +472,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:02466410-d73a-43a2-ae4a-0cc26197244d" + "childCatenaXId": "urn:uuid:f4db9a02-3181-4f2d-903f-ba5cbc5a9b82" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -489,12 +489,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:be5fc459-1105-4e56-b8b5-e656a7c471f1" + "childCatenaXId": "urn:uuid:97f9e4ef-9c5d-4038-9ea6-1102dfc70e01" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -506,12 +506,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f8dd4a33-b5dc-4603-bb22-d9209a466ece" + "childCatenaXId": "urn:uuid:4b6a8d0e-d6cf-492a-bbdd-20956baaa6e9" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -523,12 +523,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:5be230e2-7050-4d1e-a2b6-37a32111b374" + "childCatenaXId": "urn:uuid:1e5a8888-5e03-4231-abfa-00de3be05da1" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -540,12 +540,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2cfaf921-1095-4f6c-b0bc-ea34f7e81cb2" + "childCatenaXId": "urn:uuid:784af922-1460-49b2-b4dd-d14f72fb3a7a" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -557,12 +557,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:78a6c924-083f-4858-832d-774a1207d232" + "childCatenaXId": "urn:uuid:a06a4c66-9f8e-43f4-84c1-d5b35c8c53b0" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -574,46 +574,46 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:aa6e48b8-4e0d-4eeb-8dc0-ecd3e8a1b1fb" + "childCatenaXId": "urn:uuid:9bec264e-0180-470d-be25-5976ca4eaf5c" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:0eefc461-f341-4f71-9072-7291356a1c6d", + "catenaXId": "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7", "linkedItem": { "quantity": { - "quantityNumber": 1.0, + "quantityNumber": 0.2014, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" + "lexicalValue": "unit:kilogram" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:08a861a1-28f5-450c-b275-e5863cb57df5" + "childCatenaXId": "urn:uuid:458974fe-e4bf-4221-b108-b727f6da2466" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:aa6e48b8-4e0d-4eeb-8dc0-ecd3e8a1b1fb", + "catenaXId": "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7", "linkedItem": { "quantity": { - "quantityNumber": 1.0, + "quantityNumber": 0.2341, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" + "lexicalValue": "unit:kilogram" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ef0a4ba8-daa7-474d-be2d-c6755bba3584" + "childCatenaXId": "urn:uuid:df86b6e7-d3e2-46e7-8250-1e7be432a238" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:5cd50f24-1885-4f3e-81a1-a2051f69382a", + "catenaXId": "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -625,15 +625,15 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a742d285-d9ef-4644-a52c-9424347257d5" + "childCatenaXId": "urn:uuid:bb17dcf0-e1ec-4608-bc6c-043c93a66e8c" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:5cd50f24-1885-4f3e-81a1-a2051f69382a", + "catenaXId": "urn:uuid:bb17dcf0-e1ec-4608-bc6c-043c93a66e8c", "linkedItem": { "quantity": { - "quantityNumber": 0.2001, + "quantityNumber": 0.1908, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", "lexicalValue": "unit:kilogram" @@ -642,49 +642,49 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d1d13611-26a5-498b-bcfc-1b62a4ed1176" + "childCatenaXId": "urn:uuid:fab8e14b-6d39-4efa-aa65-c6cd09d3af9f" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:5cd50f24-1885-4f3e-81a1-a2051f69382a", + "catenaXId": "urn:uuid:6e1fd2a3-5350-4492-9ac2-163eb62094e3", "linkedItem": { "quantity": { - "quantityNumber": 0.3301, + "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:bf82a05c-f170-4f37-9e75-79e84818fb41" + "childCatenaXId": "urn:uuid:9e3a7831-c396-48df-acc0-482d6930e3b0" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:03bd9690-8127-4275-bdfb-3d9d7b0b3ecc", + "catenaXId": "urn:uuid:81a65eb2-be1d-4bb4-ab39-9f859b282bc5", "linkedItem": { "quantity": { - "quantityNumber": 0.2014, + "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2db6b2b0-dcd5-4783-ac5d-ca58009f93e4" + "childCatenaXId": "urn:uuid:5d95b5a1-bd5a-4703-bd15-ce9e893a8f3c" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:03bd9690-8127-4275-bdfb-3d9d7b0b3ecc", + "catenaXId": "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743", "linkedItem": { "quantity": { - "quantityNumber": 0.2341, + "quantityNumber": 0.2001, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", "lexicalValue": "unit:kilogram" @@ -693,12 +693,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0ec2b3a8-e2cb-4302-8bdb-2807deed0ecf" + "childCatenaXId": "urn:uuid:3e22f4f9-b2e3-4e8a-9c8f-f2f7ddaa43a2" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:03bd9690-8127-4275-bdfb-3d9d7b0b3ecc", + "catenaXId": "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -710,15 +710,15 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:3b417f12-fc54-4c55-a337-3f174e5b8886" + "childCatenaXId": "urn:uuid:73173bf5-08df-4898-9d6d-8899015c161e" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a742d285-d9ef-4644-a52c-9424347257d5", + "catenaXId": "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743", "linkedItem": { "quantity": { - "quantityNumber": 0.1908, + "quantityNumber": 0.3301, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", "lexicalValue": "unit:kilogram" @@ -727,12 +727,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:84c8573c-2c22-410b-a2db-ee0064847abd" + "childCatenaXId": "urn:uuid:3db730be-9de5-4db5-a58d-684de36484e7" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:3b417f12-fc54-4c55-a337-3f174e5b8886", + "catenaXId": "urn:uuid:73173bf5-08df-4898-9d6d-8899015c161e", "linkedItem": { "quantity": { "quantityNumber": 0.1908, @@ -744,9 +744,9 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:3895104d-89f8-4caf-aaa8-b6947c6ef5c6" + "childCatenaXId": "urn:uuid:07e0997f-4212-4456-8f27-164b30fc8355" }, "aspectType": "AssemblyPartRelationship" } ] -} +} \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-submodels.json b/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-submodels.json index 6d8e5f6836..1a38daddc1 100644 --- a/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-submodels.json +++ b/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-submodels.json @@ -1,2646 +1,1591 @@ { - "submodels": [ - { - "identification": "urn:uuid:15950557-16bf-4cce-85c9-690822321d1d", - "aspectType": "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction", - "payload": { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", - "dismantlerProperties": { - "expiryDate": "2022-07-11T08:38:46.743Z", - "dismantlerAuditorContact": { - "phone": "+49458404363", - "fax": "+497740070" - }, - "dismantlerContact": { - "phone": "+492795608", - "fax": "+49476895" - }, - "dismantlerAuditorAddress": { - "zip": "68161", - "country": "DEU", - "street": "Speyerer Straße", - "houseNumber": "45", - "name": "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", - "location": "Mannheim" - }, - "receiverAuditorAdress": { - "zip": "68161", - "country": "DEU", - "street": "Berliner Straße", - "houseNumber": "42", - "name": "VLhpfQGTMDYpsBZxvfBoeygjb", - "location": "Mannheim" - }, - "dismantlerAdress": { - "zip": "68165", - "country": "DEU", - "street": "Schubertstraße", - "houseNumber": "11", - "name": "JxkyvRnL", - "location": "Mannheim" - }, - "issueDate": "2022-07-11T08:38:46.743Z", - "isVehicleWithdrawnFromService": false, - "governmentAdress": { - "zip": "10719", - "country": "DEU", - "street": "Pariser Straße", - "houseNumber": "45", - "name": "RYtGKbgicZaHCBRQDSx", - "location": "Berlin" - } - }, - "serialNumber": "DIS1087432", - "companyNumber": "S30A00265", - "vehicleProperties": { - "licenseAbbreviation": "MA", - "isVehicleInformationComplete": false, - "licensePlate": "MA-UI123", - "identification": "WBAAY711X0KC28153", - "emptyWeight": 1.79, - "model": "Model A", - "brand": "OME", - "class": "01", - "firstRegistration": "19.12.2014" - }, - "returnPointProperties": { - "expiryDate": "2022-07-11T08:38:46.741Z", - "receiverAuditorContact": { - "phone": "+49004417570", - "fax": "+495516625649" - }, - "receiverContact": { - "phone": "+4912263422", - "fax": "+49288164270" - }, - "receiverAuditorAdress": { - "zip": "68161", - "country": "DEU", - "street": "Speyerer Straße", - "houseNumber": "45", - "name": "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", - "location": "Mannheim" - }, - "issueDate": "2022-07-11T08:38:46.741Z", - "isVehicleWithdrawnFromService": true - }, - "vehicleOwnerProperties": { - "isVehicleOwnerInformationComplete": true, - "vehicleOwnerAddress": { - "zip": "68163", - "country": "DEU", - "street": "Rheinvillen Straße", - "houseNumber": "7", - "name": "eOMtThyhVNLWUZNRcBaQKxI", - "location": "Mannheim" - }, - "citizenship": "DEU" - }, - "dismantlingDate": "2022-07-11T08:38:46.739Z" - } - }, - { - "identification": "urn:uuid:782f00ad-44ce-43d2-bcab-411427fbd7b2", - "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload": { - "component": [ - { - "materialName": "Iron", - "recycledContent": 0, - "materialClass": "1.1", - "quantity": { - "materialValue": 327.6, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "IR334" - }, - { - "materialName": "Polyethylen", - "recycledContent": 0, - "materialClass": "5.5.1", - "quantity": { - "materialValue": 163.8, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "PE221" - }, - { - "materialName": "Polyamid6", - "recycledContent": 0, - "materialClass": "5.5.1", - "quantity": { - "materialValue": 40.95, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "POL6" - }, - { - "materialName": "Aluminium", - "recycledContent": 0, - "materialClass": "2.1", - "quantity": { - "materialValue": 286.65, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "ALU331" - }, - { - "materialName": "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", - "recycledContent": 0, - "materialClass": "0.7", - "quantity": { - "materialValue": 109.2, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "W123" - }, - { - "materialName": "Glue", - "recycledContent": 0, - "materialClass": "6.2", - "quantity": { - "materialValue": 54.6, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "GL338" - }, - { - "materialName": "Carbon Steel", - "recycledContent": 0, - "materialClass": "1.1.2", - "quantity": { - "materialValue": 382.2, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "CS2" - }, - { - "materialName": "Cooper", - "recycledContent": 0, - "materialClass": "3.1", - "quantity": { - "materialValue": 250.2, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "CO7" - }, - { - "materialName": "Rubber", - "recycledContent": 0, - "materialClass": "5.3", - "quantity": { - "materialValue": 7.8, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "R22" - }, - { - "materialName": "Textiles", - "recycledContent": 0, - "materialClass": "5.5.2", - "quantity": { - "materialValue": 5.12, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "TEX1" - } - ] - } - }, - { - "identification": "urn:uuid:4cf079bd-a20c-4a2e-9132-bfd928cd11cd", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", - "childParts": [ - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2591039c-e81c-4347-8a70-c4a2eba0bcd9" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:144225c7-1101-49a9-88c0-c7d04547cf7f" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:af727506-b369-469b-829e-0d0b10db2f49" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:78a6c924-083f-4858-832d-774a1207d232" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0eefc461-f341-4f71-9072-7291356a1c6d" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:aa6e48b8-4e0d-4eeb-8dc0-ecd3e8a1b1fb" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:820db5a1-18ab-4896-9a77-33eff163dd8f" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:bb308242-ee6f-4339-82a9-64c40e7f8913" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6cd45b1b-d58a-4cb6-af22-a8a06052492a" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:adf502d3-0cb4-40ba-b90f-59807ca8f2f3" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:adb2b086-8edf-4ae6-bb3f-7b4338e136a5" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:1a044db4-589c-4bd0-bfdd-fb0a4938fab3" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:90581d63-af84-4284-8c66-4cbd07d9c680" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:43dd6a52-24c3-4ba1-8a7f-d80ce0b3dc79" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:be5fc459-1105-4e56-b8b5-e656a7c471f1" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:5be230e2-7050-4d1e-a2b6-37a32111b374" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6fe17840-60fb-45e8-87d0-15b9b2c4ba17" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:095a5cd5-0295-442e-8540-dbc839498774" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f25037bd-1525-41af-97ca-ae51581075a4" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ac326bc7-3ecd-4f09-ad9b-8384b5be8ebb" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2cfaf921-1095-4f6c-b0bc-ea34f7e81cb2" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:103a27de-f422-49b4-bc10-e1a157230fdd" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:bdc6a49d-6d3c-444e-85ff-2262e4650b35" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ab096d16-e53d-4216-8b5f-be57f83a278a" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2c398681-7ab5-4812-8c57-521d0b0af07f" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:abdeec09-79cf-4c4e-9a0e-687496fd0944" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:9d0987b4-539f-4b29-b07b-dcd841befd2b" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:02466410-d73a-43a2-ae4a-0cc26197244d" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:40fbf943-3965-4574-8435-5aec0752b777" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:52ceb54d-3b15-41d2-9b0e-f05d00767dea" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:babced29-f4bc-4dbf-9396-f0bb3bd37965" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f8dd4a33-b5dc-4603-bb22-d9209a466ece" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:03bd9690-8127-4275-bdfb-3d9d7b0b3ecc" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:5cd50f24-1885-4f3e-81a1-a2051f69382a" - } - ] - } - }, - { - "identification": "urn:uuid:fdf6d09f-2238-426e-a06d-c30120c1fbcf", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "II-12", - "key": "manufacturerPartId" - }, - { - "value": "OMCLWIEVXVNKDTODB", - "key": "partInstanceId" - }, - { - "value": "OMCLWIEVXVNKDTODB", - "key": "van" - } - ], - "manufacturingInformation": { - "date": "2013-04-02T09:59:35.000Z", - "country": "DEU" - }, - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", - "partTypeInformation": { - "manufacturerPartId": "II-12", - "classification": "product", - "nameAtManufacturer": "Vehicle Combustion" + "submodels" : [ { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:b13a42ac-3b7c-447e-9899-840b9974376c", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "54165444-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-836766975029792254411934", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:90581d63-af84-4284-8c66-4cbd07d9c680", - "partTypeInformation": { - "manufacturerPartId": "54165444-59", - "customerPartId": "54165444-59", - "classification": "component", - "nameAtManufacturer": "Bumper front", - "nameAtCustomer": "Bumper front" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:2bfe82e9-565b-4d55-80a8-4b6a61d33f20" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:666950c5-90d2-4062-857a-cc99739a8353", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "32494586-73", - "key": "manufacturerPartId" - }, - { - "value": "NO-831575746110202156055552", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:144225c7-1101-49a9-88c0-c7d04547cf7f", - "partTypeInformation": { - "manufacturerPartId": "32494586-73", - "customerPartId": "32494586-73", - "classification": "component", - "nameAtManufacturer": "Differential Gear", - "nameAtCustomer": "Differential Gear" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a609b239-d015-4f37-a8eb-5a1956756ab2" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:1753d662-bdf6-4e77-86eb-009e95b0034c", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "20125432-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-067039222270178572226809", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:ac326bc7-3ecd-4f09-ad9b-8384b5be8ebb", - "partTypeInformation": { - "manufacturerPartId": "20125432-59", - "customerPartId": "20125432-59", - "classification": "component", - "nameAtManufacturer": "Indicator left", - "nameAtCustomer": "Indicator left" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:26d7bebc-263b-4874-8222-971a2720a355" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:f9cf79a3-f54e-46c5-9845-df92a6f3084d", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "94421589-82", - "key": "manufacturerPartId" - }, - { - "value": "NO-641925859146312096936462", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:6cd45b1b-d58a-4cb6-af22-a8a06052492a", - "partTypeInformation": { - "manufacturerPartId": "94421589-82", - "customerPartId": "94421589-82", - "classification": "component", - "nameAtManufacturer": "Engine hood", - "nameAtCustomer": "Engine hood" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d2f93c23-6fb6-4585-b3cb-c0c91269e4fd" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:aed620df-e726-432c-9611-5f4403119177", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "57929013-09", - "key": "manufacturerPartId" - }, - { - "value": "NO-266090960468979771745477", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:2c398681-7ab5-4812-8c57-521d0b0af07f", - "partTypeInformation": { - "manufacturerPartId": "57929013-09", - "customerPartId": "57929013-09", - "classification": "component", - "nameAtManufacturer": "AC compressor", - "nameAtCustomer": "Air conditioning compressor" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6e1fd2a3-5350-4492-9ac2-163eb62094e3" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:2b4483f0-c42b-4881-b5cb-5a9209759c4b", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "78744126-74", - "key": "manufacturerPartId" - }, - { - "value": "NO-254437110258168894203883", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:9d0987b4-539f-4b29-b07b-dcd841befd2b", - "partTypeInformation": { - "manufacturerPartId": "78744126-74", - "customerPartId": "78744126-74", - "classification": "component", - "nameAtManufacturer": "Taillight front", - "nameAtCustomer": "Taillight front" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:81a65eb2-be1d-4bb4-ab39-9f859b282bc5" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:c5713f84-0abd-4f11-bace-06d12896a7e0", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "00871379-44", - "key": "manufacturerPartId" - }, - { - "value": "NO-810434303513170472423224", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:52ceb54d-3b15-41d2-9b0e-f05d00767dea", - "partTypeInformation": { - "manufacturerPartId": "00871379-44", - "customerPartId": "00871379-44", - "classification": "component", - "nameAtManufacturer": "Chassis", - "nameAtCustomer": "Chassis" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:2bafe7e7-e1c4-46f1-8da4-133dc4b92deb" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:3784adcf-58a7-4389-8d41-3b18f9ce9136", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "28673126-98", - "key": "manufacturerPartId" - }, - { - "value": "NO-116534874207562349537203", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:bb308242-ee6f-4339-82a9-64c40e7f8913", - "partTypeInformation": { - "manufacturerPartId": "28673126-98", - "customerPartId": "28673126-98", - "classification": "component", - "nameAtManufacturer": "Door r-r", - "nameAtCustomer": "Door rear-right" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1e5a8888-5e03-4231-abfa-00de3be05da1" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:6ab821c7-3f9b-4b8e-938a-a57521210466", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "09002013-68", - "key": "manufacturerPartId" - }, - { - "value": "NO-140967008405004093498073", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:6fe17840-60fb-45e8-87d0-15b9b2c4ba17", - "partTypeInformation": { - "manufacturerPartId": "09002013-68", - "customerPartId": "09002013-68", - "classification": "component", - "nameAtManufacturer": "Trailer coupling", - "nameAtCustomer": "Tailer coupling" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:784af922-1460-49b2-b4dd-d14f72fb3a7a" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:d249f240-fd17-4f32-8e5b-41b62101e2f3", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "85023955-75", - "key": "manufacturerPartId" - }, - { - "value": "NO-435771775002467620350260", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:adf502d3-0cb4-40ba-b90f-59807ca8f2f3", - "partTypeInformation": { - "manufacturerPartId": "85023955-75", - "customerPartId": "85023955-75", - "classification": "component", - "nameAtManufacturer": "Tailgate", - "nameAtCustomer": "Tailgate" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:14d1edce-921f-48e1-a827-2bbf90146d09" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:fb4687aa-21c4-4684-b329-bba58a23c7f1", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "81324139-23", - "key": "manufacturerPartId" - }, - { - "value": "NO-870721222928869858943331", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:ab096d16-e53d-4216-8b5f-be57f83a278a", - "partTypeInformation": { - "manufacturerPartId": "81324139-23", - "customerPartId": "81324139-23", - "classification": "component", - "nameAtManufacturer": "Alternator", - "nameAtCustomer": "Alternator" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:f39b5055-fdc1-463d-8621-9d0e04feed92" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:b59e6192-a95c-4b6a-a14b-d38441741c3e", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "78141846-87", - "key": "manufacturerPartId" - }, - { - "value": "NO-201731619969435940248838", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:bdc6a49d-6d3c-444e-85ff-2262e4650b35", - "partTypeInformation": { - "manufacturerPartId": "78141846-87", - "customerPartId": "78141846-87", - "classification": "component", - "nameAtManufacturer": "Starter motor", - "nameAtCustomer": "Starter motor" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:97f9e4ef-9c5d-4038-9ea6-1102dfc70e01" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:1a9bae00-d9c2-4cc3-a71f-9d20f20245fa", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "43501996-98", - "key": "manufacturerPartId" - }, - { - "value": "NO-711041363429031825273799", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:095a5cd5-0295-442e-8540-dbc839498774", - "partTypeInformation": { - "manufacturerPartId": "43501996-98", - "customerPartId": "43501996-98", - "classification": "component", - "nameAtManufacturer": "Dashboard", - "nameAtCustomer": "Dashboard" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:0df8a9d4-1410-4c42-8824-ce45ad5dcad6" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:043a6c12-6f34-4fac-9748-67ca7d2df15a", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "15635759-16", - "key": "manufacturerPartId" - }, - { - "value": "NO-856252272738820326905748", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:820db5a1-18ab-4896-9a77-33eff163dd8f", - "partTypeInformation": { - "manufacturerPartId": "15635759-16", - "customerPartId": "15635759-16", - "classification": "component", - "nameAtManufacturer": "Door r-l", - "nameAtCustomer": "Door rear-left" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:0d18c568-3e2c-468a-b3b6-005b0bbb0b4f" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:c339f7f8-72ac-49c4-b892-639268819139", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "61184040-23", - "key": "manufacturerPartId" - }, - { - "value": "NO-532146030429001450985888", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:abdeec09-79cf-4c4e-9a0e-687496fd0944", - "partTypeInformation": { - "manufacturerPartId": "61184040-23", - "customerPartId": "61184040-23", - "classification": "component", - "nameAtManufacturer": "Taillight rear", - "nameAtCustomer": "Taillight rear" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:cf26332b-250a-4e75-a971-e01970e8e04e" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:83f58121-1f84-4878-9863-86ec9fb656a3", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "36643162-35", - "key": "manufacturerPartId" - }, - { - "value": "NO-479044561992173510156975", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:1a044db4-589c-4bd0-bfdd-fb0a4938fab3", - "partTypeInformation": { - "manufacturerPartId": "36643162-35", - "customerPartId": "36643162-35", - "classification": "component", - "nameAtManufacturer": "Fender right", - "nameAtCustomer": "Fender right" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4b6a8d0e-d6cf-492a-bbdd-20956baaa6e9" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:d2dee1e6-7d90-44ea-9ef0-554de18c1029", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "77795937-13", - "key": "manufacturerPartId" - }, - { - "value": "NO-205350704316891513567125", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:f25037bd-1525-41af-97ca-ae51581075a4", - "partTypeInformation": { - "manufacturerPartId": "77795937-13", - "customerPartId": "77795937-13", - "classification": "component", - "nameAtManufacturer": "Steering wheel", - "nameAtCustomer": "Steering wheel" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:691ec9f3-22fe-49f8-97af-697bcdb903a8" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:3cb1c5e1-1ce1-4812-a75a-cb810dae0fa6", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "08901347-87", - "key": "manufacturerPartId" - }, - { - "value": "NO-570881491452278421574187", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:babced29-f4bc-4dbf-9396-f0bb3bd37965", - "partTypeInformation": { - "manufacturerPartId": "08901347-87", - "customerPartId": "08901347-87", - "classification": "component", - "nameAtManufacturer": "Rims", - "nameAtCustomer": "Rims" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9bec264e-0180-470d-be25-5976ca4eaf5c" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:e387b16b-c3fd-4202-9388-ef36396cfb5c", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "67034319-44", - "key": "manufacturerPartId" - }, - { - "value": "NO-327269234882486610360671", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:af727506-b369-469b-829e-0d0b10db2f49", - "partTypeInformation": { - "manufacturerPartId": "67034319-44", - "customerPartId": "67034319-44", - "classification": "component", - "nameAtManufacturer": "Turbocharger", - "nameAtCustomer": "Turbocharger" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a79aa73d-0d8c-4d84-9607-f21f039c8d84" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:40c6f66b-0b71-4b1b-b52e-0888f020efd9", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "13769860-47", - "key": "manufacturerPartId" - }, - { - "value": "NO-302484356154870721127636", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:adb2b086-8edf-4ae6-bb3f-7b4338e136a5", - "partTypeInformation": { - "manufacturerPartId": "13769860-47", - "customerPartId": "13769860-47", - "classification": "component", - "nameAtManufacturer": "Fender left", - "nameAtCustomer": "Fender right" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b274c885-0a36-4d74-ad8a-dbc2fb951a8c" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:8c984804-657a-4a49-816b-bc51ff0a292f", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "45415162-57", - "key": "manufacturerPartId" - }, - { - "value": "NO-079766503923668679944250", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:103a27de-f422-49b4-bc10-e1a157230fdd", - "partTypeInformation": { - "manufacturerPartId": "45415162-57", - "customerPartId": "45415162-57", - "classification": "component", - "nameAtManufacturer": "Led headlight", - "nameAtCustomer": "Led headlight" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:2aa238f2-bcb7-4037-bb65-824610f5b23a" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:190fa83a-a4d5-4e53-8d2c-8aec1c515497", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "88111709-49", - "key": "manufacturerPartId" - }, - { - "value": "NO-529606228230415468170075", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:40fbf943-3965-4574-8435-5aec0752b777", - "partTypeInformation": { - "manufacturerPartId": "88111709-49", - "customerPartId": "88111709-49", - "classification": "component", - "nameAtManufacturer": "Axle part rear", - "nameAtCustomer": "Axle part rear" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:35c78eca-db53-442c-9e01-467fc22c9434" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:0c3f280a-de95-4f8a-846d-c374805a6300", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "58471477-24", - "key": "manufacturerPartId" - }, - { - "value": "NO-494974510862015633246080", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:5be230e2-7050-4d1e-a2b6-37a32111b374", - "partTypeInformation": { - "manufacturerPartId": "58471477-24", - "customerPartId": "58471477-24", - "classification": "component", - "nameAtManufacturer": "Exterior mirror right", - "nameAtCustomer": "Exterior mirror right" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:f4db9a02-3181-4f2d-903f-ba5cbc5a9b82" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:36e521b6-c1b2-48e3-bd44-a96f7aaad29b", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "19073706-76", - "key": "manufacturerPartId" - }, - { - "value": "NO-861166602257385098796306", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:2cfaf921-1095-4f6c-b0bc-ea34f7e81cb2", - "partTypeInformation": { - "manufacturerPartId": "19073706-76", - "customerPartId": "19073706-76", - "classification": "component", - "nameAtManufacturer": "Indicator right", - "nameAtCustomer": "Indicator right" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d2d2b3b9-818f-4dc0-b77b-8c851d0c0af2" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:47043f89-fe4a-4ea0-8511-97e325381476", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "22768257-25", - "key": "manufacturerPartId" - }, - { - "value": "NO-619091520512352910610918", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:43dd6a52-24c3-4ba1-8a7f-d80ce0b3dc79", - "partTypeInformation": { - "manufacturerPartId": "22768257-25", - "customerPartId": "22768257-25", - "classification": "component", - "nameAtManufacturer": "Bumper rear", - "nameAtCustomer": "Bumper rear" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:24d2e568-e161-4eb6-b599-9e1dee3cd333" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:6d72aa1c-3b9b-4605-9372-d7483ea54fbd", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "12093297-03", - "key": "manufacturerPartId" - }, - { - "value": "NO-560032192197631661606006", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:02466410-d73a-43a2-ae4a-0cc26197244d", - "partTypeInformation": { - "manufacturerPartId": "12093297-03", - "customerPartId": "12093297-03", - "classification": "component", - "nameAtManufacturer": "Axle part front", - "nameAtCustomer": "Axle part front" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:879f66ad-a5c5-48d4-bda3-18c192423a63" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:93aca82f-43d6-4dc1-a07b-ed2d650711a2", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "65529521-37", - "key": "manufacturerPartId" - }, - { - "value": "NO-106417252757483959580329", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:be5fc459-1105-4e56-b8b5-e656a7c471f1", - "partTypeInformation": { - "manufacturerPartId": "65529521-37", - "customerPartId": "65529521-37", - "classification": "component", - "nameAtManufacturer": "Exterior mirror left", - "nameAtCustomer": "Exterior mirror left" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c98dc077-f0fe-423d-8d74-48ef630232e7" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:a137cea1-4e81-4872-962b-267c60c44824", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "45863316-60", - "key": "manufacturerPartId" - }, - { - "value": "NO-031383569783493470146383", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:f8dd4a33-b5dc-4603-bb22-d9209a466ece", - "partTypeInformation": { - "manufacturerPartId": "45863316-60", - "customerPartId": "45863316-60", - "classification": "component", - "nameAtManufacturer": "Tires", - "nameAtCustomer": "Tires" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a06a4c66-9f8e-43f4-84c1-d5b35c8c53b0" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:0e6bb115-2985-4745-8ab0-a4dc63d01947", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:0eefc461-f341-4f71-9072-7291356a1c6d", - "childParts": [ - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:08a861a1-28f5-450c-b275-e5863cb57df5" - } - ] - } - }, - { - "identification": "urn:uuid:4ca55f18-1be9-4c76-9086-6d655c7e6bc0", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003CSGV", - "key": "manufacturerId" - }, - { - "value": "22782277-50", - "key": "manufacturerPartId" - }, - { - "value": "NO-873812843799914468642242", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:0eefc461-f341-4f71-9072-7291356a1c6d", - "partTypeInformation": { - "manufacturerPartId": "22782277-50", - "customerPartId": "22782277-50", - "classification": "component", - "nameAtManufacturer": "Door f-l", - "nameAtCustomer": "Door front-left" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:698fe434-5dc2-4c6c-80ff-d5a40223f52f" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:de9aff68-3e7d-4e45-9083-dcf9df137c7f", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "73849201-61", - "key": "manufacturerPartId" - }, - { - "value": "NO-936078961041153035581527", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:78a6c924-083f-4858-832d-774a1207d232", - "partTypeInformation": { - "manufacturerPartId": "73849201-61", - "customerPartId": "73849201-61", - "classification": "component", - "nameAtManufacturer": "Catalysator", - "nameAtCustomer": "Catalysator" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:7f7d23b1-d951-4297-8b26-dcab953da0c1" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:4171cf95-7f2f-41ba-b79a-acc2bd29f571", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "10030939-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-069516230374935255094238", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:2591039c-e81c-4347-8a70-c4a2eba0bcd9", - "partTypeInformation": { - "manufacturerPartId": "10030939-59", - "customerPartId": "10030939-59", - "classification": "component", - "nameAtManufacturer": "Engine", - "nameAtCustomer": "Engine" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e97af751-4743-4884-8544-d29e26313c43" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:fcf58e5c-8b54-4743-b48f-c7735bfe0b4e", - "aspectType": "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension", - "payload": { - "diameter": "560", - "length": "843", - "width": "762", - "weight": "180", - "height": "711" - } - }, - { - "identification": "urn:uuid:3202a190-0bf7-47b5-bef1-64eadf87d303", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003CSGV", - "key": "manufacturerId" - }, - { - "value": "95657362-64", - "key": "manufacturerPartId" - }, - { - "value": "NO-819638096990191034874672", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:aa6e48b8-4e0d-4eeb-8dc0-ecd3e8a1b1fb", - "partTypeInformation": { - "manufacturerPartId": "33740332-54", - "customerPartId": "33740332-54", - "classification": "component", - "nameAtManufacturer": "Door f-r", - "nameAtCustomer": "Door front-right" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:7ad788d4-fb9d-47e7-984e-bdef6d9b4fcc" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:ac51100e-a4ef-4ebe-bfb0-8423cd7a1c09", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:aa6e48b8-4e0d-4eeb-8dc0-ecd3e8a1b1fb", - "childParts": [ - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ef0a4ba8-daa7-474d-be2d-c6755bba3584" - } - ] - } - }, - { - "identification": "urn:uuid:ebaa9fac-f945-43db-9eac-35b686b38960", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000000BJTL", - "key": "manufacturerId" - }, - { - "value": "95657762-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-796893452921362288979275", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:08a861a1-28f5-450c-b275-e5863cb57df5", - "partTypeInformation": { - "manufacturerPartId": "95657762-59", - "customerPartId": "95657762-59", - "classification": "component", - "nameAtManufacturer": "Door Key", - "nameAtCustomer": "Door Key" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:6feef408-5177-441b-a395-7d1168d0b892", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:5cd50f24-1885-4f3e-81a1-a2051f69382a", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.3301", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:bf82a05c-f170-4f37-9e75-79e84818fb41" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a742d285-d9ef-4644-a52c-9424347257d5" - }, - { - "quantity": { - "quantityNumber": "0.2001", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d1d13611-26a5-498b-bcfc-1b62a4ed1176" - } - ] - } - }, - { - "identification": "urn:uuid:d975e8a3-3494-48f8-a4f8-01c4c84efc1b", - "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload": { - "component": [ - { - "materialName": "Glue", - "recycledContent": 0, - "materialClass": "6.2", - "quantity": { - "materialValue": 0.3301, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "GL338" - } - ] - } - }, - { - "identification": "urn:uuid:5dfe0557-d126-4385-af41-0f0edc32170e", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B5MJ", - "key": "manufacturerId" - }, - { - "value": "00666W2-79", - "key": "manufacturerPartId" - }, - { - "value": "NO-020201982464201224279694", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:5cd50f24-1885-4f3e-81a1-a2051f69382a", - "partTypeInformation": { - "manufacturerPartId": "00666W2-79", - "customerPartId": "00666W2-79", - "classification": "component", - "nameAtManufacturer": "ECU", - "nameAtCustomer": "ECU" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "HM-54", + "key" : "manufacturerPartId" + }, { + "value" : "OMCESJELGZTODJEMH", + "key" : "partInstanceId" + }, { + "value" : "OMCESJELGZTODJEMH", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2015-08-21T12:05:27.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "partTypeInformation" : { + "manufacturerPartId" : "HM-54", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Combustion" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-159783786359351467396330", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f39b5055-fdc1-463d-8621-9d0e04feed92", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-648085728630125031216606", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0d18c568-3e2c-468a-b3b6-005b0bbb0b4f", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-875452192223802089857293", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7ad788d4-fb9d-47e7-984e-bdef6d9b4fcc", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + }, { + "catenaXId" : "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.2014", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" } - } - }, - { - "identification": "urn:uuid:3d439e8f-3b4e-4236-8264-d9ac36178e7e", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000000BJTL", - "key": "manufacturerId" - }, - { - "value": "95657762-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-531754883419836002307104", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:ef0a4ba8-daa7-474d-be2d-c6755bba3584", - "partTypeInformation": { - "manufacturerPartId": "95657762-59", - "customerPartId": "95657762-59", - "classification": "component", - "nameAtManufacturer": "Door Key", - "nameAtCustomer": "Door Key" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:458974fe-e4bf-4221-b108-b727f6da2466" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:b4599ae9-e7c5-444d-a321-adfd74f1a53a", - "aspectType": "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension", - "payload": { - "diameter": "380", - "length": "810", - "width": "590", - "weight": "85", - "height": "610" - } - }, - { - "identification": "urn:uuid:f8b2face-1f1a-4c5f-8801-d3f28a554b3c", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:03bd9690-8127-4275-bdfb-3d9d7b0b3ecc", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.2014", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2db6b2b0-dcd5-4783-ac5d-ca58009f93e4" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:3b417f12-fc54-4c55-a337-3f174e5b8886" - }, - { - "quantity": { - "quantityNumber": "0.2341", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0ec2b3a8-e2cb-4302-8bdb-2807deed0ecf" - } - ] - } - }, - { - "identification": "urn:uuid:1c58a36f-0cd1-4c1b-9922-233646ef190a", - "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload": { - "component": [ - { - "materialName": "Carbon Steel", - "recycledContent": 0, - "materialClass": "1.1.2", - "quantity": { - "materialValue": 72.843, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "CS2" - }, - { - "materialName": "Oil", - "recycledContent": 0, - "materialClass": "9.2", - "quantity": { - "materialValue": 6.9, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "liquid", - "materialAbbreviation": "SAE40" - }, - { - "materialName": "Copper", - "recycledContent": 0, - "materialClass": "3.1", - "quantity": { - "materialValue": 1.2, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "CO7" - } - ] - } - }, - { - "identification": "urn:uuid:266bf641-201f-4c8b-bd35-1be6b58bf1ca", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B2OM", - "key": "manufacturerId" - }, - { - "value": "1O222E8-43", - "key": "manufacturerPartId" - }, - { - "value": "NO-089795994822538829384206", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:03bd9690-8127-4275-bdfb-3d9d7b0b3ecc", - "partTypeInformation": { - "manufacturerPartId": "1O222E8-43", - "customerPartId": "1O222E8-43", - "classification": "component", - "nameAtManufacturer": "Transmission", - "nameAtCustomer": "Transmission" - } - } - }, - { - "identification": "urn:uuid:7b121026-0b2a-4547-b096-614906be1506", - "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload": { - "materialName": "Engineering Plastics", - "materialClass": "5.1", - "component": [ - { - "materialName": "PA66", - "recycledContent": 0, - "materialClass": "5.1", - "quantity": { - "unit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:percent" - }, - "value": 70 - }, - "aggregateState": "solid", - "materialAbbreviation": "PA66" - }, - { - "materialName": "GF-Faser", - "recycledContent": 0, - "materialClass": "5.1", - "quantity": { - "unit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:percent" - }, - "value": 30 - }, - "aggregateState": "solid", - "materialAbbreviation": "GF30" - } - ], - "recycledContent": 0 - } - }, - { - "identification": "urn:uuid:1c86f2f0-21e7-4041-85d6-244fa470bcdc", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "00906R7-15", - "key": "manufacturerPartId" - }, - { - "value": "NO-528923587146262366153473", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:d1d13611-26a5-498b-bcfc-1b62a4ed1176", - "partTypeInformation": { - "manufacturerPartId": "00906R7-15", - "customerPartId": "00906R7-15", - "classification": "component", - "nameAtManufacturer": "Engineering Plastics", - "nameAtCustomer": "Engineering Plastics" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:bb17dcf0-e1ec-4608-bc6c-043c93a66e8c" + }, { + "quantity" : { + "quantityNumber" : "0.2341", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" } - } - }, - { - "identification": "urn:uuid:92d76b24-5d82-487b-a263-22625cce57f1", - "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AXS3", - "key": "manufacturerId" - }, - { - "value": "92329W2-35", - "key": "manufacturerPartId" - }, - { - "value": "NO-588277814259423760073398", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:bf82a05c-f170-4f37-9e75-79e84818fb41", - "partTypeInformation": { - "manufacturerPartId": "92329W2-35", - "customerPartId": "92329W2-35", - "classification": "component", - "nameAtManufacturer": "Glue", - "nameAtCustomer": "Glue" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:df86b6e7-d3e2-46e7-8250-1e7be432a238" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-873908589180071499476796", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "92618B6-91", + "key" : "manufacturerPartId" + }, { + "value" : "NO-996973268325924049754969", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:458974fe-e4bf-4221-b108-b727f6da2466", + "partTypeInformation" : { + "manufacturerPartId" : "92618B6-91", + "customerPartId" : "92618B6-91", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + }, { + "catenaXId" : "urn:uuid:df86b6e7-d3e2-46e7-8250-1e7be432a238", + "childParts" : [ ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "12971M9-93", + "key" : "manufacturerPartId" + }, { + "value" : "NO-697528248692636000290241", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:df86b6e7-d3e2-46e7-8250-1e7be432a238", + "partTypeInformation" : { + "manufacturerPartId" : "12971M9-93", + "customerPartId" : "12971M9-93", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + }, { + "catenaXId" : "urn:uuid:bb17dcf0-e1ec-4608-bc6c-043c93a66e8c", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" } - } - }, - { - "identification": "urn:uuid:f06bccb3-3cb8-4cdb-b15a-3a60e2d656ec", - "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload": { - "materialName": "Glue", - "materialClass": "5.5", - "component": [ - { - "materialName": "Aluminium oxide", - "recycledContent": 0, - "materialClass": "5.5.1", - "quantity": { - "unit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:percent" - }, - "value": 70 - }, - "aggregateState": "solid", - "materialAbbreviation": "AL7" - }, - { - "materialName": "Other", - "recycledContent": 0, - "materialClass": "5.5.2", - "quantity": { - "unit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:percent" - }, - "value": 30 - }, - "aggregateState": "", - "materialAbbreviation": "" - } - ], - "recycledContent": 0 - } - }, - { - "identification": "urn:uuid:eb3098a7-fef0-43fc-8456-319f5dfe0ab8", - "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "92127S2-46", - "key": "manufacturerPartId" - }, - { - "value": "NO-774433170394149105999362", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:2db6b2b0-dcd5-4783-ac5d-ca58009f93e4", - "partTypeInformation": { - "manufacturerPartId": "92127S2-46", - "customerPartId": "92127S2-46", - "classification": "component", - "nameAtManufacturer": "Engineering Plastics", - "nameAtCustomer": "Engineering Plastics" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:fab8e14b-6d39-4efa-aa65-c6cd09d3af9f" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "59814X5-67", + "key" : "manufacturerPartId" + }, { + "value" : "NO-832707732988444699883511", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bb17dcf0-e1ec-4608-bc6c-043c93a66e8c", + "partTypeInformation" : { + "manufacturerPartId" : "59814X5-67", + "customerPartId" : "59814X5-67", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "97985R7-02", + "key" : "manufacturerPartId" + }, { + "value" : "NO-407130073310430094548959", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fab8e14b-6d39-4efa-aa65-c6cd09d3af9f", + "partTypeInformation" : { + "manufacturerPartId" : "97985R7-02", + "customerPartId" : "97985R7-02", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-936146767662584710972092", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c98dc077-f0fe-423d-8d74-48ef630232e7", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-795833402191353495740434", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cf26332b-250a-4e75-a971-e01970e8e04e", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-109742937265631134067226", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:14d1edce-921f-48e1-a827-2bbf90146d09", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-859558081368951863797556", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0df8a9d4-1410-4c42-8824-ce45ad5dcad6", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-736995801506174463933281", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:35c78eca-db53-442c-9e01-467fc22c9434", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-678883217070402841337873", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d2f93c23-6fb6-4585-b3cb-c0c91269e4fd", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-497606275003773028096452", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:24d2e568-e161-4eb6-b599-9e1dee3cd333", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + }, { + "catenaXId" : "urn:uuid:6e1fd2a3-5350-4492-9ac2-163eb62094e3", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:6be4b9ef-2884-4fa4-ba2a-e202cbef23d0", - "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload": { - "materialName": "Engineering Plastics", - "materialClass": "5.1", - "component": [ - { - "materialName": "PA66", - "recycledContent": 0, - "materialClass": "5.1", - "quantity": { - "unit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:percent" - }, - "value": 70 - }, - "aggregateState": "solid", - "materialAbbreviation": "PA66" - }, - { - "materialName": "GF-Faser", - "recycledContent": 0, - "materialClass": "5.1", - "quantity": { - "unit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:percent" - }, - "value": 30 - }, - "aggregateState": "solid", - "materialAbbreviation": "GF30" - } - ], - "recycledContent": 0 - } - }, - { - "identification": "urn:uuid:707048e6-0c60-4811-9a4e-70d84589525a", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:a742d285-d9ef-4644-a52c-9424347257d5", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.1908", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:84c8573c-2c22-410b-a2db-ee0064847abd" - } - ] - } - }, - { - "identification": "urn:uuid:0760da29-8340-4dce-827d-eac07efda07d", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B3NX", - "key": "manufacturerId" - }, - { - "value": "83450G3-11", - "key": "manufacturerPartId" - }, - { - "value": "NO-527213404604696652997115", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:a742d285-d9ef-4644-a52c-9424347257d5", - "partTypeInformation": { - "manufacturerPartId": "83450G3-11", - "customerPartId": "83450G3-11", - "classification": "component", - "nameAtManufacturer": "Sensor", - "nameAtCustomer": "Sensor" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9e3a7831-c396-48df-acc0-482d6930e3b0" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-992523705893628105637478", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6e1fd2a3-5350-4492-9ac2-163eb62094e3", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-598454621664395799844065", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9e3a7831-c396-48df-acc0-482d6930e3b0", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-599982937473580405159269", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:691ec9f3-22fe-49f8-97af-697bcdb903a8", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-069096896052108527820936", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:879f66ad-a5c5-48d4-bda3-18c192423a63", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-268116253207603357192097", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2bfe82e9-565b-4d55-80a8-4b6a61d33f20", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-336648349977653376674280", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e97af751-4743-4884-8544-d29e26313c43", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-509845995490482164990452", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2bafe7e7-e1c4-46f1-8da4-133dc4b92deb", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + }, { + "catenaXId" : "urn:uuid:81a65eb2-be1d-4bb4-ab39-9f859b282bc5", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:b221ead3-2bb8-4668-b7fa-15d4a89d4ef8", - "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload": { - "component": [ - { - "materialName": "Glue", - "materialClass": "6.2", - "quantity": { - "materialValue": 0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "weight": "0.2341", - "materialAbbreviation": "GL338" - } - ] - } - }, - { - "identification": "urn:uuid:7a053fad-206c-445c-b0a7-f8c99291c43a", - "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AXS3", - "key": "manufacturerId" - }, - { - "value": "65904N5-41", - "key": "manufacturerPartId" - }, - { - "value": "NO-540357339794874359231068", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:0ec2b3a8-e2cb-4302-8bdb-2807deed0ecf", - "partTypeInformation": { - "manufacturerPartId": "65904N5-41", - "customerPartId": "65904N5-41", - "classification": "component", - "nameAtManufacturer": "Glue", - "nameAtCustomer": "Glue" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5d95b5a1-bd5a-4703-bd15-ce9e893a8f3c" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-066375034236248781737744", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:81a65eb2-be1d-4bb4-ab39-9f859b282bc5", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-362782815239459207049367", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5d95b5a1-bd5a-4703-bd15-ce9e893a8f3c", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + }, { + "catenaXId" : "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.3301", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" } - } - }, - { - "identification": "urn:uuid:b8cc6798-ef68-4953-9366-38c16267f8c8", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:0ec2b3a8-e2cb-4302-8bdb-2807deed0ecf", - "childParts": [] - } - }, - { - "identification": "urn:uuid:01d4f191-557b-43ea-a0f5-bdbf94561bb8", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B3NX", - "key": "manufacturerId" - }, - { - "value": "52357G7-90", - "key": "manufacturerPartId" - }, - { - "value": "NO-504183894273499969784798", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:3b417f12-fc54-4c55-a337-3f174e5b8886", - "partTypeInformation": { - "manufacturerPartId": "52357G7-90", - "customerPartId": "52357G7-90", - "classification": "component", - "nameAtManufacturer": "Sensor", - "nameAtCustomer": "Sensor" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3db730be-9de5-4db5-a58d-684de36484e7" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:852bff5f-58f4-46ff-ae9e-cd1edc972a5e", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:3b417f12-fc54-4c55-a337-3f174e5b8886", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.1908", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:3895104d-89f8-4caf-aaa8-b6947c6ef5c6" - } - ] - } - }, - { - "identification": "urn:uuid:f7991b9e-d8f1-4ccb-bcc3-1a4c60a1ca21", - "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "23595K7-98", - "key": "manufacturerPartId" - }, - { - "value": "NO-216975361602633013156521", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:84c8573c-2c22-410b-a2db-ee0064847abd", - "partTypeInformation": { - "manufacturerPartId": "23595K7-98", - "customerPartId": "23595K7-98", - "classification": "component", - "nameAtManufacturer": "Engineering Plastics", - "nameAtCustomer": "Engineering Plastics" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:73173bf5-08df-4898-9d6d-8899015c161e" + }, { + "quantity" : { + "quantityNumber" : "0.2001", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" } - } - }, - { - "identification": "urn:uuid:5d1d3594-b771-4351-977f-e466531a1ed8", - "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload": { - "materialName": "Engineering Plastics", - "materialClass": "5.1", - "component": [ - { - "materialName": "PA66", - "recycledContent": 0, - "materialClass": "5.1", - "quantity": { - "unit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:percent" - }, - "value": 70 - }, - "aggregateState": "solid", - "materialAbbreviation": "PA66" - }, - { - "materialName": "GF-Faser", - "recycledContent": 0, - "materialClass": "5.1", - "quantity": { - "unit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:percent" - }, - "value": 30 - }, - "aggregateState": "solid", - "materialAbbreviation": "GF30" - } - ], - "recycledContent": 0 - } - }, - { - "identification": "urn:uuid:305c5f54-588e-4457-928b-9c0acdbd9516", - "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload": { - "materialName": "NTIER Product", - "materialClass": "5.5", - "component": [ - { - "materialName": "Aluminium oxide", - "recycledContent": 0, - "materialClass": "5.5.1", - "quantity": { - "unit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:percent" - }, - "value": 60 - }, - "aggregateState": "solid", - "materialAbbreviation": "" - }, - { - "materialName": "Other", - "recycledContent": 0, - "materialClass": "5.5.2", - "quantity": { - "unit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:percent" - }, - "value": 40 - }, - "aggregateState": "", - "materialAbbreviation": "" - } - ], - "recycledContent": 0 - } - }, - { - "identification": "urn:uuid:d506eec1-e90e-45bd-a6ae-d4f49e1966b6", - "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "09511Y9-22", - "key": "manufacturerPartId" - }, - { - "value": "NO-338902845304557892409604", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:3895104d-89f8-4caf-aaa8-b6947c6ef5c6", - "partTypeInformation": { - "manufacturerPartId": "09511Y9-22", - "customerPartId": "09511Y9-22", - "classification": "component", - "nameAtManufacturer": "NTIER Product", - "nameAtCustomer": "NTIER Product" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3e22f4f9-b2e3-4e8a-9c8f-f2f7ddaa43a2" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "82569I5-92", + "key" : "manufacturerPartId" + }, { + "value" : "NO-334015696717292140049666", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743", + "partTypeInformation" : { + "manufacturerPartId" : "82569I5-92", + "customerPartId" : "82569I5-92", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "75712F5-01", + "key" : "manufacturerPartId" + }, { + "value" : "NO-605608995342255025031920", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3e22f4f9-b2e3-4e8a-9c8f-f2f7ddaa43a2", + "partTypeInformation" : { + "manufacturerPartId" : "75712F5-01", + "customerPartId" : "75712F5-01", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + }, { + "catenaXId" : "urn:uuid:73173bf5-08df-4898-9d6d-8899015c161e", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" } - } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:07e0997f-4212-4456-8f27-164b30fc8355" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "93129L2-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-385471450329826329987414", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:73173bf5-08df-4898-9d6d-8899015c161e", + "partTypeInformation" : { + "manufacturerPartId" : "93129L2-82", + "customerPartId" : "93129L2-82", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "58787H0-00", + "key" : "manufacturerPartId" + }, { + "value" : "NO-372624279623697356085107", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:07e0997f-4212-4456-8f27-164b30fc8355", + "partTypeInformation" : { + "manufacturerPartId" : "58787H0-00", + "customerPartId" : "58787H0-00", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "18902Y6-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-029075908400452177212167", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3db730be-9de5-4db5-a58d-684de36484e7", + "partTypeInformation" : { + "manufacturerPartId" : "18902Y6-24", + "customerPartId" : "18902Y6-24", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-533642229232718051376567", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a79aa73d-0d8c-4d84-9607-f21f039c8d84", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-921997959382740097215495", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b274c885-0a36-4d74-ad8a-dbc2fb951a8c", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-184251322111987500605285", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7f7d23b1-d951-4297-8b26-dcab953da0c1", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-155814525871073145655296", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d2d2b3b9-818f-4dc0-b77b-8c851d0c0af2", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-542786014164812113169432", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a609b239-d015-4f37-a8eb-5a1956756ab2", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-538477214738641259012537", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:26d7bebc-263b-4874-8222-971a2720a355", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-194992578318124977058956", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:698fe434-5dc2-4c6c-80ff-d5a40223f52f", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-568627629271216126073773", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2aa238f2-bcb7-4037-bb65-824610f5b23a", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-551783054415179887723580", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f4db9a02-3181-4f2d-903f-ba5cbc5a9b82", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-031375911513879669240632", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:97f9e4ef-9c5d-4038-9ea6-1102dfc70e01", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-106284885210407255353028", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4b6a8d0e-d6cf-492a-bbdd-20956baaa6e9", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-435856035485235689104018", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1e5a8888-5e03-4231-abfa-00de3be05da1", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-016136282528997805450947", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:784af922-1460-49b2-b4dd-d14f72fb3a7a", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-337144781845234931718094", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a06a4c66-9f8e-43f4-84c1-d5b35c8c53b0", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-475308452957816806114030", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9bec264e-0180-470d-be25-5976ca4eaf5c", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" } - ] -} + } ] +} \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-relationships.json b/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-relationships.json index 164dd424d6..2939fcb8ed 100644 --- a/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-relationships.json +++ b/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-relationships.json @@ -1,7 +1,7 @@ { "relationships": [ { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -13,12 +13,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:8ae3c8a9-2c80-4223-a798-db94c854465b" + "childCatenaXId": "urn:uuid:03556cd3-ae2a-48ad-a6a4-89631f8d41c8" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -30,12 +30,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:9abcceb1-02ed-4384-83bb-e3f5b3be77d4" + "childCatenaXId": "urn:uuid:d6142601-5e09-45fe-9b42-e53cf8cd458c" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -47,12 +47,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ef4ef0e2-4658-464c-ad1e-eae5afb77942" + "childCatenaXId": "urn:uuid:5fd291cf-e8df-4a46-8a8d-5054dbc3d1bf" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -64,12 +64,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:50edf0fc-95a7-40b3-ad43-9156f3b81768" + "childCatenaXId": "urn:uuid:b21cfd5b-dcf4-46fa-9227-3eb693567dd8" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -81,12 +81,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:57ced45e-4f98-4aa4-bb67-6f7c51b90a4b" + "childCatenaXId": "urn:uuid:ae2ad2b8-ed83-42b8-9953-3d37e224b3d7" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -98,12 +98,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:18f9d1ef-100e-4c0a-bb83-a407c644fcba" + "childCatenaXId": "urn:uuid:492781f5-62ff-4fb2-876c-3498e2844d13" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -115,12 +115,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:73477f4a-f49f-4306-b30f-3ab36ef72e6f" + "childCatenaXId": "urn:uuid:cc8e9448-b294-46e7-8110-337e8bfa3001" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -132,12 +132,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:3940c819-dd95-422b-aa32-f7d3f1930de8" + "childCatenaXId": "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -149,12 +149,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f2e6d0cd-5a9a-451d-a583-510c5209f64c" + "childCatenaXId": "urn:uuid:fa5804f1-8d4e-437c-aca2-a5491be61758" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -166,12 +166,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ec215159-fae3-47d8-98c6-d67b7ffe7c0c" + "childCatenaXId": "urn:uuid:badddd8a-0abf-4457-9d33-6eb05a3ac0ef" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -183,12 +183,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6c2f4f41-3924-43da-969d-1afee232194c" + "childCatenaXId": "urn:uuid:8eb9285f-5b10-4d5a-af7e-44e7fb0520f1" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -200,12 +200,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b32a9cda-b026-4715-b253-c08a7d11b840" + "childCatenaXId": "urn:uuid:7bbbc63f-ba86-4e1c-ad78-6bdb4a125783" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -217,12 +217,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0391b219-9bf5-44cc-89af-e5db399a7d21" + "childCatenaXId": "urn:uuid:8914a66e-b59b-405f-afff-b97d71ebece3" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -234,12 +234,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:7b2484b1-21b5-434a-aa2b-fd5434cc7ae3" + "childCatenaXId": "urn:uuid:a0f6803c-e4dc-4cda-8ad2-91cc57868449" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -251,12 +251,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:868df1e0-b497-4059-a0d3-3899630020da" + "childCatenaXId": "urn:uuid:5371bcac-94d0-4254-9292-6666b8e28204" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -268,12 +268,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:67885579-9ddc-4daa-b59e-d7348e9581d3" + "childCatenaXId": "urn:uuid:04b8c677-a058-4393-94c1-5c5a48a27535" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -285,12 +285,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:8fc21b03-1796-44af-bd52-c6998bfae1bb" + "childCatenaXId": "urn:uuid:36131844-36f1-426d-ba5d-a7ddcbb509d2" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -302,12 +302,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d3ab8367-7d12-4991-bd89-cea117a62297" + "childCatenaXId": "urn:uuid:309a2b1a-0061-4895-b587-f72b3d725f8f" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -319,12 +319,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:087372bf-e9f0-49e6-98e8-0ce98140605c" + "childCatenaXId": "urn:uuid:a5d13a5a-5d77-4e74-810f-a9332cc19665" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -336,12 +336,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f3f33eec-d7ed-44b5-8cf2-752b6c2c22ca" + "childCatenaXId": "urn:uuid:1e35e091-3d3d-421e-9c7e-14cf1c9442a6" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -353,12 +353,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ad1f1627-a57e-481f-9cff-10990674f486" + "childCatenaXId": "urn:uuid:66769f42-4905-424c-8f35-f072fab5a734" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -370,12 +370,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:643ff5cd-4468-4041-95d9-eeb2cc42c487" + "childCatenaXId": "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -387,12 +387,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:fbd019cc-6eda-4416-a668-e5d83271781d" + "childCatenaXId": "urn:uuid:ceb6b964-5779-49c1-b5e9-0ee70528fcbd" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -404,12 +404,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:00ce78e5-3bf3-4847-92c1-28771e83f998" + "childCatenaXId": "urn:uuid:7b87f5d6-f75e-40f1-a439-779ae9f57a21" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -421,12 +421,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:09c48e81-5c73-4e1a-85a2-0bf2fff4dada" + "childCatenaXId": "urn:uuid:9940dd40-a292-4a27-9733-08b1ca750149" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -438,12 +438,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e35161e7-803d-4746-9528-db9d9814c692" + "childCatenaXId": "urn:uuid:a1082992-cc3b-4da1-af6b-aa692ed71461" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -455,12 +455,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:5c48d1a1-bc81-4a9d-84db-53fc9c69e677" + "childCatenaXId": "urn:uuid:3e300930-0e1c-459c-8914-1ac631176716" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -472,12 +472,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:8c21d03f-b15e-427f-9cd0-c23701ed8f9c" + "childCatenaXId": "urn:uuid:8e916bb5-34cb-48cc-bb30-3dea756a25b0" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -489,12 +489,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:98484975-27ed-4c79-ad94-c82c2c0360e8" + "childCatenaXId": "urn:uuid:6c7bdfd8-7116-46da-b8e2-7322acd64042" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -506,12 +506,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e83c5a1f-7558-4978-990f-9c796224ce63" + "childCatenaXId": "urn:uuid:c4cd2818-b616-4a28-b327-7e7e449fbdae" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -523,12 +523,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b995cae9-0196-4ab5-b768-798eda1b5726" + "childCatenaXId": "urn:uuid:98c92d24-0d86-4dfa-97bb-1f67794fc9f9" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -540,12 +540,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:867a1fd9-6a8b-4f56-a5ef-2b61f12f8bce" + "childCatenaXId": "urn:uuid:e1ea599a-255d-4abf-a385-70f63cbe9794" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -557,12 +557,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a9d00358-d560-4a4b-98cc-d3a4d61c253b" + "childCatenaXId": "urn:uuid:cd55d855-754f-4a60-935a-88768f0ed2fb" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -574,12 +574,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d7d61cd8-27b2-4707-a4c2-d735cf1a0dcd" + "childCatenaXId": "urn:uuid:e0566a95-a34f-44e0-a562-f5db3367f7f3" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:50edf0fc-95a7-40b3-ad43-9156f3b81768", + "catenaXId": "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -591,32 +591,32 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ba9cdc50-eae0-49d7-bd5e-36711b3f57e6" + "childCatenaXId": "urn:uuid:393f7bf3-c73f-4b0d-86ee-f5be8aa338c4" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:9abcceb1-02ed-4384-83bb-e3f5b3be77d4", + "catenaXId": "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68", "linkedItem": { "quantity": { - "quantityNumber": 1.0, + "quantityNumber": 0.2341, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" + "lexicalValue": "unit:kilogram" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:68766b51-f794-4033-bcb1-f635ed309cd4" + "childCatenaXId": "urn:uuid:b86bfe10-6a4f-41be-8a00-6f11ce38702e" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:9abcceb1-02ed-4384-83bb-e3f5b3be77d4", + "catenaXId": "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68", "linkedItem": { "quantity": { - "quantityNumber": 0.2001, + "quantityNumber": 0.2014, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", "lexicalValue": "unit:kilogram" @@ -625,15 +625,15 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:68c9b1bf-b2c1-456a-883c-2aac5f5cb5f4" + "childCatenaXId": "urn:uuid:4b2b21d0-8fed-4d32-b262-f75c5b846df8" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:9abcceb1-02ed-4384-83bb-e3f5b3be77d4", + "catenaXId": "urn:uuid:393f7bf3-c73f-4b0d-86ee-f5be8aa338c4", "linkedItem": { "quantity": { - "quantityNumber": 0.3301, + "quantityNumber": 0.1908, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", "lexicalValue": "unit:kilogram" @@ -642,32 +642,32 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:816f9c8d-6ef1-439e-89de-ef1d34481c17" + "childCatenaXId": "urn:uuid:5eb6d06a-f873-4ada-9fac-8431ad5a600d" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:57ced45e-4f98-4aa4-bb67-6f7c51b90a4b", + "catenaXId": "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290", "linkedItem": { "quantity": { - "quantityNumber": 1.0, + "quantityNumber": 0.3301, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" + "lexicalValue": "unit:kilogram" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:133a0c0d-c5f1-4b2d-a5df-18765c55fba5" + "childCatenaXId": "urn:uuid:620b64c1-3505-4740-b64e-32da0f1b82e5" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:57ced45e-4f98-4aa4-bb67-6f7c51b90a4b", + "catenaXId": "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290", "linkedItem": { "quantity": { - "quantityNumber": 0.2014, + "quantityNumber": 0.2001, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", "lexicalValue": "unit:kilogram" @@ -676,77 +676,77 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:1ac0b95c-c8e1-49e3-842b-eae13822a7ce" + "childCatenaXId": "urn:uuid:a14aa6a4-5be6-45d2-8544-b179baeeed7d" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:57ced45e-4f98-4aa4-bb67-6f7c51b90a4b", + "catenaXId": "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290", "linkedItem": { "quantity": { - "quantityNumber": 0.2341, + "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2687fd84-825d-4923-b1ab-66b70f002929" + "childCatenaXId": "urn:uuid:0ea1aa79-10d4-4df1-8a5a-5b7eafd26163" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f2e6d0cd-5a9a-451d-a583-510c5209f64c", + "catenaXId": "urn:uuid:0ea1aa79-10d4-4df1-8a5a-5b7eafd26163", "linkedItem": { "quantity": { - "quantityNumber": 1.0, + "quantityNumber": 0.1908, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" + "lexicalValue": "unit:kilogram" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:936e9f19-e777-4acb-881d-fe0ff722343b" + "childCatenaXId": "urn:uuid:1d312e57-7a0f-47c0-8586-5b5c890d0bcf" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:68766b51-f794-4033-bcb1-f635ed309cd4", + "catenaXId": "urn:uuid:ceb6b964-5779-49c1-b5e9-0ee70528fcbd", "linkedItem": { "quantity": { - "quantityNumber": 0.1908, + "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:edfe4b76-0be3-4934-8afd-ff9e7fb27aa0" + "childCatenaXId": "urn:uuid:a4a26b9c-9460-4cc5-8645-85916b86adb0" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:133a0c0d-c5f1-4b2d-a5df-18765c55fba5", + "catenaXId": "urn:uuid:3e300930-0e1c-459c-8914-1ac631176716", "linkedItem": { "quantity": { - "quantityNumber": 0.1908, + "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a2e2913b-4007-4288-a1ca-4b2252fa70d3" + "childCatenaXId": "urn:uuid:8f9d8c7f-6d7a-48f1-9959-9fa3a1a7a891" }, "aspectType": "AssemblyPartRelationship" } ] -} +} \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-submodels.json b/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-submodels.json index 526d55e6f7..3e380850d5 100644 --- a/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-submodels.json +++ b/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-submodels.json @@ -1,2089 +1,1591 @@ -{ - "submodels": [ - { - "identification": "urn:uuid:8a8d2905-5c7e-463b-8b6f-e7fc4789064e", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "CW-84", - "key": "manufacturerPartId" - }, - { - "value": "OMAXALZZSKVQLDQYW", - "key": "partInstanceId" - }, - { - "value": "OMAXALZZSKVQLDQYW", - "key": "van" - } - ], - "manufacturingInformation": { - "date": "2016-04-27T02:35:20.000Z", - "country": "DEU" - }, - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", - "partTypeInformation": { - "manufacturerPartId": "CW-84", - "classification": "product", - "nameAtManufacturer": "Vehicle Combustion" +{ + "submodels" : [ { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:9519a9d4-b165-4154-a263-720054b6d3cf", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", - "childParts": [ - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:5c48d1a1-bc81-4a9d-84db-53fc9c69e677" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b32a9cda-b026-4715-b253-c08a7d11b840" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:7b2484b1-21b5-434a-aa2b-fd5434cc7ae3" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:67885579-9ddc-4daa-b59e-d7348e9581d3" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:50edf0fc-95a7-40b3-ad43-9156f3b81768" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f2e6d0cd-5a9a-451d-a583-510c5209f64c" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:09c48e81-5c73-4e1a-85a2-0bf2fff4dada" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6c2f4f41-3924-43da-969d-1afee232194c" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0391b219-9bf5-44cc-89af-e5db399a7d21" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:8c21d03f-b15e-427f-9cd0-c23701ed8f9c" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f3f33eec-d7ed-44b5-8cf2-752b6c2c22ca" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e35161e7-803d-4746-9528-db9d9814c692" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ad1f1627-a57e-481f-9cff-10990674f486" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ec215159-fae3-47d8-98c6-d67b7ffe7c0c" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:73477f4a-f49f-4306-b30f-3ab36ef72e6f" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:18f9d1ef-100e-4c0a-bb83-a407c644fcba" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:fbd019cc-6eda-4416-a668-e5d83271781d" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:98484975-27ed-4c79-ad94-c82c2c0360e8" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d7d61cd8-27b2-4707-a4c2-d735cf1a0dcd" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:868df1e0-b497-4059-a0d3-3899630020da" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b995cae9-0196-4ab5-b768-798eda1b5726" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:3940c819-dd95-422b-aa32-f7d3f1930de8" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:867a1fd9-6a8b-4f56-a5ef-2b61f12f8bce" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:643ff5cd-4468-4041-95d9-eeb2cc42c487" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:087372bf-e9f0-49e6-98e8-0ce98140605c" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:8fc21b03-1796-44af-bd52-c6998bfae1bb" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:8ae3c8a9-2c80-4223-a798-db94c854465b" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e83c5a1f-7558-4978-990f-9c796224ce63" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a9d00358-d560-4a4b-98cc-d3a4d61c253b" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d3ab8367-7d12-4991-bd89-cea117a62297" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ef4ef0e2-4658-464c-ad1e-eae5afb77942" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:00ce78e5-3bf3-4847-92c1-28771e83f998" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:57ced45e-4f98-4aa4-bb67-6f7c51b90a4b" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:9abcceb1-02ed-4384-83bb-e3f5b3be77d4" - } - ] - } - }, - { - "identification": "urn:uuid:d93c5f69-2f9e-4734-92ec-7c7d64a450d6", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "78744126-74", - "key": "manufacturerPartId" - }, - { - "value": "NO-577666297086581459258590", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:8ae3c8a9-2c80-4223-a798-db94c854465b", - "partTypeInformation": { - "manufacturerPartId": "78744126-74", - "customerPartId": "78744126-74", - "classification": "component", - "nameAtManufacturer": "Taillight front", - "nameAtCustomer": "Taillight front" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c4cd2818-b616-4a28-b327-7e7e449fbdae" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:bcf13b36-1be9-45ed-9135-1bef660d1b1b", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "65529521-37", - "key": "manufacturerPartId" - }, - { - "value": "NO-637839747432704841361574", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:73477f4a-f49f-4306-b30f-3ab36ef72e6f", - "partTypeInformation": { - "manufacturerPartId": "65529521-37", - "customerPartId": "65529521-37", - "classification": "component", - "nameAtManufacturer": "Exterior mirror left", - "nameAtCustomer": "Exterior mirror left" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e0566a95-a34f-44e0-a562-f5db3367f7f3" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:e2a2836f-e3ac-4d79-94a3-66d469627552", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "81324139-23", - "key": "manufacturerPartId" - }, - { - "value": "NO-234089394021291722206714", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:643ff5cd-4468-4041-95d9-eeb2cc42c487", - "partTypeInformation": { - "manufacturerPartId": "81324139-23", - "customerPartId": "81324139-23", - "classification": "component", - "nameAtManufacturer": "Alternator", - "nameAtCustomer": "Alternator" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b21cfd5b-dcf4-46fa-9227-3eb693567dd8" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:b10e20c7-bccf-4c7c-8ac2-61520f9b37e7", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "08901347-87", - "key": "manufacturerPartId" - }, - { - "value": "NO-698813188915827969458218", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:ef4ef0e2-4658-464c-ad1e-eae5afb77942", - "partTypeInformation": { - "manufacturerPartId": "08901347-87", - "customerPartId": "08901347-87", - "classification": "component", - "nameAtManufacturer": "Rims", - "nameAtCustomer": "Rims" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:7bbbc63f-ba86-4e1c-ad78-6bdb4a125783" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:1ce3bf6c-89e0-4e07-a453-d0369569ec7c", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "22768257-25", - "key": "manufacturerPartId" - }, - { - "value": "NO-182909772702645317572786", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:ec215159-fae3-47d8-98c6-d67b7ffe7c0c", - "partTypeInformation": { - "manufacturerPartId": "22768257-25", - "customerPartId": "22768257-25", - "classification": "component", - "nameAtManufacturer": "Bumper rear", - "nameAtCustomer": "Bumper rear" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3e300930-0e1c-459c-8914-1ac631176716" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:3f29aec6-9728-426a-9adb-68e123f9b2ad", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "09002013-68", - "key": "manufacturerPartId" - }, - { - "value": "NO-741711117019957866246192", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:fbd019cc-6eda-4416-a668-e5d83271781d", - "partTypeInformation": { - "manufacturerPartId": "09002013-68", - "customerPartId": "09002013-68", - "classification": "component", - "nameAtManufacturer": "Trailer coupling", - "nameAtCustomer": "Tailer coupling" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ceb6b964-5779-49c1-b5e9-0ee70528fcbd" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:23d15004-d7c0-4d3d-b24a-8d689b394e99", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "94421589-82", - "key": "manufacturerPartId" - }, - { - "value": "NO-090051782799791537084391", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:0391b219-9bf5-44cc-89af-e5db399a7d21", - "partTypeInformation": { - "manufacturerPartId": "94421589-82", - "customerPartId": "94421589-82", - "classification": "component", - "nameAtManufacturer": "Engine hood", - "nameAtCustomer": "Engine hood" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:badddd8a-0abf-4457-9d33-6eb05a3ac0ef" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:94f7e3c6-f7b3-4e08-a50b-47307f2da5a6", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "28673126-98", - "key": "manufacturerPartId" - }, - { - "value": "NO-521971425971587921853227", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:6c2f4f41-3924-43da-969d-1afee232194c", - "partTypeInformation": { - "manufacturerPartId": "28673126-98", - "customerPartId": "28673126-98", - "classification": "component", - "nameAtManufacturer": "Door r-r", - "nameAtCustomer": "Door rear-right" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:7b87f5d6-f75e-40f1-a439-779ae9f57a21" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:f32935bb-f142-477b-b058-c502f283ac93", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "67034319-44", - "key": "manufacturerPartId" - }, - { - "value": "NO-517977969951032933278547", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:7b2484b1-21b5-434a-aa2b-fd5434cc7ae3", - "partTypeInformation": { - "manufacturerPartId": "67034319-44", - "customerPartId": "67034319-44", - "classification": "component", - "nameAtManufacturer": "Turbocharger", - "nameAtCustomer": "Turbocharger" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8914a66e-b59b-405f-afff-b97d71ebece3" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:75741dc8-c99b-49af-b0f4-c917e50a6e3f", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "58471477-24", - "key": "manufacturerPartId" - }, - { - "value": "NO-653368825144313419172899", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:18f9d1ef-100e-4c0a-bb83-a407c644fcba", - "partTypeInformation": { - "manufacturerPartId": "58471477-24", - "customerPartId": "58471477-24", - "classification": "component", - "nameAtManufacturer": "Exterior mirror right", - "nameAtCustomer": "Exterior mirror right" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a1082992-cc3b-4da1-af6b-aa692ed71461" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:44d5b6d6-f486-4b13-aa1e-dbf89da8776e", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "20125432-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-263034085930445959442824", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:868df1e0-b497-4059-a0d3-3899630020da", - "partTypeInformation": { - "manufacturerPartId": "20125432-59", - "customerPartId": "20125432-59", - "classification": "component", - "nameAtManufacturer": "Indicator left", - "nameAtCustomer": "Indicator left" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1e35e091-3d3d-421e-9c7e-14cf1c9442a6" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:01f26b8b-7c15-4955-8bc9-5288f5e8de3d", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "73849201-61", - "key": "manufacturerPartId" - }, - { - "value": "NO-699623586834062230296181", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:67885579-9ddc-4daa-b59e-d7348e9581d3", - "partTypeInformation": { - "manufacturerPartId": "73849201-61", - "customerPartId": "73849201-61", - "classification": "component", - "nameAtManufacturer": "Catalysator", - "nameAtCustomer": "Catalysator" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:cc8e9448-b294-46e7-8110-337e8bfa3001" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:a619db8c-ed95-41c6-9e43-d136f9604837", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "45415162-57", - "key": "manufacturerPartId" - }, - { - "value": "NO-085197958619364691310676", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:3940c819-dd95-422b-aa32-f7d3f1930de8", - "partTypeInformation": { - "manufacturerPartId": "45415162-57", - "customerPartId": "45415162-57", - "classification": "component", - "nameAtManufacturer": "Led headlight", - "nameAtCustomer": "Led headlight" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:fa5804f1-8d4e-437c-aca2-a5491be61758" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:aa3e948a-171a-4982-af23-846c915ad5df", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "61184040-23", - "key": "manufacturerPartId" - }, - { - "value": "NO-031797809646836273892252", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:8fc21b03-1796-44af-bd52-c6998bfae1bb", - "partTypeInformation": { - "manufacturerPartId": "61184040-23", - "customerPartId": "61184040-23", - "classification": "component", - "nameAtManufacturer": "Taillight rear", - "nameAtCustomer": "Taillight rear" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a0f6803c-e4dc-4cda-8ad2-91cc57868449" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:ffafe010-e974-429d-bbdd-5d10d3757504", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "00871379-44", - "key": "manufacturerPartId" - }, - { - "value": "NO-446614016547833512657672", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:d3ab8367-7d12-4991-bd89-cea117a62297", - "partTypeInformation": { - "manufacturerPartId": "00871379-44", - "customerPartId": "00871379-44", - "classification": "component", - "nameAtManufacturer": "Chassis", - "nameAtCustomer": "Chassis" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:492781f5-62ff-4fb2-876c-3498e2844d13" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:8b764b2a-267c-4250-aed1-6c7907e5a840", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "13769860-47", - "key": "manufacturerPartId" - }, - { - "value": "NO-825143168313832059901794", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:f3f33eec-d7ed-44b5-8cf2-752b6c2c22ca", - "partTypeInformation": { - "manufacturerPartId": "13769860-47", - "customerPartId": "13769860-47", - "classification": "component", - "nameAtManufacturer": "Fender left", - "nameAtCustomer": "Fender right" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6c7bdfd8-7116-46da-b8e2-7322acd64042" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:eaf5c9ef-f1f4-4fca-9a86-2adcec065351", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "45863316-60", - "key": "manufacturerPartId" - }, - { - "value": "NO-383688996769055538071023", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:00ce78e5-3bf3-4847-92c1-28771e83f998", - "partTypeInformation": { - "manufacturerPartId": "45863316-60", - "customerPartId": "45863316-60", - "classification": "component", - "nameAtManufacturer": "Tires", - "nameAtCustomer": "Tires" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d6142601-5e09-45fe-9b42-e53cf8cd458c" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:d4a3006c-d184-45ab-9bb7-9cbf8bcbc168", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "36643162-35", - "key": "manufacturerPartId" - }, - { - "value": "NO-531750159545557912983689", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:e35161e7-803d-4746-9528-db9d9814c692", - "partTypeInformation": { - "manufacturerPartId": "36643162-35", - "customerPartId": "36643162-35", - "classification": "component", - "nameAtManufacturer": "Fender right", - "nameAtCustomer": "Fender right" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8eb9285f-5b10-4d5a-af7e-44e7fb0520f1" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:4a838123-bcaf-4254-92d7-d7a77a244e50", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "32494586-73", - "key": "manufacturerPartId" - }, - { - "value": "NO-864558822157392253912002", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:b32a9cda-b026-4715-b253-c08a7d11b840", - "partTypeInformation": { - "manufacturerPartId": "32494586-73", - "customerPartId": "32494586-73", - "classification": "component", - "nameAtManufacturer": "Differential Gear", - "nameAtCustomer": "Differential Gear" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:36131844-36f1-426d-ba5d-a7ddcbb509d2" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:01e294f6-0fcc-4c34-a642-699c39833cf1", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "78141846-87", - "key": "manufacturerPartId" - }, - { - "value": "NO-308048468179502884344759", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:867a1fd9-6a8b-4f56-a5ef-2b61f12f8bce", - "partTypeInformation": { - "manufacturerPartId": "78141846-87", - "customerPartId": "78141846-87", - "classification": "component", - "nameAtManufacturer": "Starter motor", - "nameAtCustomer": "Starter motor" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:04b8c677-a058-4393-94c1-5c5a48a27535" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:2129f968-8112-4cb3-afca-5c18fee7d7be", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "57929013-09", - "key": "manufacturerPartId" - }, - { - "value": "NO-990379220039630047372226", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:087372bf-e9f0-49e6-98e8-0ce98140605c", - "partTypeInformation": { - "manufacturerPartId": "57929013-09", - "customerPartId": "57929013-09", - "classification": "component", - "nameAtManufacturer": "AC compressor", - "nameAtCustomer": "Air conditioning compressor" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ae2ad2b8-ed83-42b8-9953-3d37e224b3d7" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:b161b01e-407a-49e0-9376-7fd4536105f3", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "10030939-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-498815506813804675206852", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:5c48d1a1-bc81-4a9d-84db-53fc9c69e677", - "partTypeInformation": { - "manufacturerPartId": "10030939-59", - "customerPartId": "10030939-59", - "classification": "component", - "nameAtManufacturer": "Engine", - "nameAtCustomer": "Engine" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e1ea599a-255d-4abf-a385-70f63cbe9794" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:9690df69-1218-48e6-adbc-42162c903aa3", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "54165444-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-515224917844344882891590", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:ad1f1627-a57e-481f-9cff-10990674f486", - "partTypeInformation": { - "manufacturerPartId": "54165444-59", - "customerPartId": "54165444-59", - "classification": "component", - "nameAtManufacturer": "Bumper front", - "nameAtCustomer": "Bumper front" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:66769f42-4905-424c-8f35-f072fab5a734" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:390f4be6-784d-4eac-be31-b7ff09abecb3", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "43501996-98", - "key": "manufacturerPartId" - }, - { - "value": "NO-775119044565305680099730", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:98484975-27ed-4c79-ad94-c82c2c0360e8", - "partTypeInformation": { - "manufacturerPartId": "43501996-98", - "customerPartId": "43501996-98", - "classification": "component", - "nameAtManufacturer": "Dashboard", - "nameAtCustomer": "Dashboard" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:309a2b1a-0061-4895-b587-f72b3d725f8f" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:79212ba0-2b62-4001-9486-83af09f857c6", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "15635759-16", - "key": "manufacturerPartId" - }, - { - "value": "NO-357763365151675109323378", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:09c48e81-5c73-4e1a-85a2-0bf2fff4dada", - "partTypeInformation": { - "manufacturerPartId": "15635759-16", - "customerPartId": "15635759-16", - "classification": "component", - "nameAtManufacturer": "Door r-l", - "nameAtCustomer": "Door rear-left" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a5d13a5a-5d77-4e74-810f-a9332cc19665" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:aaf75266-2b6d-4763-a373-1a8b3bbdf1fb", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "19073706-76", - "key": "manufacturerPartId" - }, - { - "value": "NO-704843739978034957603374", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:b995cae9-0196-4ab5-b768-798eda1b5726", - "partTypeInformation": { - "manufacturerPartId": "19073706-76", - "customerPartId": "19073706-76", - "classification": "component", - "nameAtManufacturer": "Indicator right", - "nameAtCustomer": "Indicator right" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:cd55d855-754f-4a60-935a-88768f0ed2fb" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:91255514-1d50-484f-8d73-4ac3168b5a92", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "85023955-75", - "key": "manufacturerPartId" - }, - { - "value": "NO-623352977854691316219658", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:8c21d03f-b15e-427f-9cd0-c23701ed8f9c", - "partTypeInformation": { - "manufacturerPartId": "85023955-75", - "customerPartId": "85023955-75", - "classification": "component", - "nameAtManufacturer": "Tailgate", - "nameAtCustomer": "Tailgate" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5371bcac-94d0-4254-9292-6666b8e28204" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:94d285bd-01ac-4a4f-9070-e8f5ec25aaab", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "88111709-49", - "key": "manufacturerPartId" - }, - { - "value": "NO-679687669439872282538739", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:a9d00358-d560-4a4b-98cc-d3a4d61c253b", - "partTypeInformation": { - "manufacturerPartId": "88111709-49", - "customerPartId": "88111709-49", - "classification": "component", - "nameAtManufacturer": "Axle part rear", - "nameAtCustomer": "Axle part rear" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9940dd40-a292-4a27-9733-08b1ca750149" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:a24f8224-555a-4f50-81c7-793c6a629e89", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "12093297-03", - "key": "manufacturerPartId" - }, - { - "value": "NO-619372392092235773470630", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:e83c5a1f-7558-4978-990f-9c796224ce63", - "partTypeInformation": { - "manufacturerPartId": "12093297-03", - "customerPartId": "12093297-03", - "classification": "component", - "nameAtManufacturer": "Axle part front", - "nameAtCustomer": "Axle part front" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5fd291cf-e8df-4a46-8a8d-5054dbc3d1bf" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:ffce4310-9dae-486b-abd0-137d1a78d155", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "77795937-13", - "key": "manufacturerPartId" - }, - { - "value": "NO-940456958374895706746333", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:d7d61cd8-27b2-4707-a4c2-d735cf1a0dcd", - "partTypeInformation": { - "manufacturerPartId": "77795937-13", - "customerPartId": "77795937-13", - "classification": "component", - "nameAtManufacturer": "Steering wheel", - "nameAtCustomer": "Steering wheel" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8e916bb5-34cb-48cc-bb30-3dea756a25b0" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:83a08add-1096-46b6-937e-380fdec415cf", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003CSGV", - "key": "manufacturerId" - }, - { - "value": "22782277-50", - "key": "manufacturerPartId" - }, - { - "value": "NO-456254855447445013274141", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:50edf0fc-95a7-40b3-ad43-9156f3b81768", - "partTypeInformation": { - "manufacturerPartId": "22782277-50", - "customerPartId": "22782277-50", - "classification": "component", - "nameAtManufacturer": "Door f-l", - "nameAtCustomer": "Door front-left" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:03556cd3-ae2a-48ad-a6a4-89631f8d41c8" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:98c92d24-0d86-4dfa-97bb-1f67794fc9f9" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "XW-63", + "key" : "manufacturerPartId" + }, { + "value" : "OMAPUHRUUEFIUYLEE", + "key" : "partInstanceId" + }, { + "value" : "OMAPUHRUUEFIUYLEE", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2013-10-09T17:39:34.000Z", + "country" : "DEU" }, - { - "identification": "urn:uuid:082daf23-e7d2-462f-9d56-d42afd0e5446", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:50edf0fc-95a7-40b3-ad43-9156f3b81768", - "childParts": [ - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ba9cdc50-eae0-49d7-bd5e-36711b3f57e6" - } - ] - } + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "partTypeInformation" : { + "manufacturerPartId" : "XW-63", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Combustion" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-080214184948140272203787", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:c174c650-a78a-4a3e-84b2-127c452e2fda", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B5MJ", - "key": "manufacturerId" - }, - { - "value": "62986Q6-51", - "key": "manufacturerPartId" - }, - { - "value": "NO-642718300945788010337776", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:9abcceb1-02ed-4384-83bb-e3f5b3be77d4", - "partTypeInformation": { - "manufacturerPartId": "62986Q6-51", - "customerPartId": "62986Q6-51", - "classification": "component", - "nameAtManufacturer": "ECU", - "nameAtCustomer": "ECU" - } - } + "catenaXId" : "urn:uuid:03556cd3-ae2a-48ad-a6a4-89631f8d41c8", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-443137672890588964185377", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:de0cbf21-6116-42a3-aa42-b27c0104888f", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:9abcceb1-02ed-4384-83bb-e3f5b3be77d4", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.3301", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:816f9c8d-6ef1-439e-89de-ef1d34481c17" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:68766b51-f794-4033-bcb1-f635ed309cd4" - }, - { - "quantity": { - "quantityNumber": "0.2001", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:68c9b1bf-b2c1-456a-883c-2aac5f5cb5f4" - } - ] - } + "catenaXId" : "urn:uuid:d6142601-5e09-45fe-9b42-e53cf8cd458c", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-776024652978438241566808", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:0ff02ce5-e8f0-4842-8e34-254da0a372cc", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B2OM", - "key": "manufacturerId" - }, - { - "value": "1O222E8-43", - "key": "manufacturerPartId" - }, - { - "value": "NO-262893229514686288047560", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:57ced45e-4f98-4aa4-bb67-6f7c51b90a4b", - "partTypeInformation": { - "manufacturerPartId": "1O222E8-43", - "customerPartId": "1O222E8-43", - "classification": "component", - "nameAtManufacturer": "Transmission", - "nameAtCustomer": "Transmission" - } - } + "catenaXId" : "urn:uuid:5fd291cf-e8df-4a46-8a8d-5054dbc3d1bf", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-706618611841126090384630", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:4a626d30-f66a-498c-ad70-b8b14f520fff", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:57ced45e-4f98-4aa4-bb67-6f7c51b90a4b", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.2014", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:1ac0b95c-c8e1-49e3-842b-eae13822a7ce" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:133a0c0d-c5f1-4b2d-a5df-18765c55fba5" - }, - { - "quantity": { - "quantityNumber": "0.2341", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2687fd84-825d-4923-b1ab-66b70f002929" - } - ] - } + "catenaXId" : "urn:uuid:b21cfd5b-dcf4-46fa-9227-3eb693567dd8", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-161982682066926378535434", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:6096805c-9ea8-449d-9310-e786627639ed", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:f2e6d0cd-5a9a-451d-a583-510c5209f64c", - "childParts": [ - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:936e9f19-e777-4acb-881d-fe0ff722343b" - } - ] - } + "catenaXId" : "urn:uuid:ae2ad2b8-ed83-42b8-9953-3d37e224b3d7", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-378492193712566489933252", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:eb333d66-f7b3-479d-9c01-95552f99c21d", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003CSGV", - "key": "manufacturerId" - }, - { - "value": "95657362-64", - "key": "manufacturerPartId" - }, - { - "value": "NO-119744543834558117845033", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:f2e6d0cd-5a9a-451d-a583-510c5209f64c", - "partTypeInformation": { - "manufacturerPartId": "33740332-54", - "customerPartId": "33740332-54", - "classification": "component", - "nameAtManufacturer": "Door f-r", - "nameAtCustomer": "Door front-right" - } - } + "catenaXId" : "urn:uuid:492781f5-62ff-4fb2-876c-3498e2844d13", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-835063135617554718341543", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:782c7bed-d065-4eaf-968c-8732b17eb33b", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000000BJTL", - "key": "manufacturerId" - }, - { - "value": "95657762-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-577952218857170015504125", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:ba9cdc50-eae0-49d7-bd5e-36711b3f57e6", - "partTypeInformation": { - "manufacturerPartId": "95657762-59", - "customerPartId": "95657762-59", - "classification": "component", - "nameAtManufacturer": "Door Key", - "nameAtCustomer": "Door Key" + "catenaXId" : "urn:uuid:cc8e9448-b294-46e7-8110-337e8bfa3001", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + }, { + "catenaXId" : "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.2014", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" } - } - }, - { - "identification": "urn:uuid:e9a78604-4336-477c-8ce0-18dfa6dbd4e6", - "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AXS3", - "key": "manufacturerId" - }, - { - "value": "33906S3-94", - "key": "manufacturerPartId" - }, - { - "value": "NO-583510554514808021817274", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:816f9c8d-6ef1-439e-89de-ef1d34481c17", - "partTypeInformation": { - "manufacturerPartId": "33906S3-94", - "customerPartId": "33906S3-94", - "classification": "component", - "nameAtManufacturer": "Glue", - "nameAtCustomer": "Glue" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4b2b21d0-8fed-4d32-b262-f75c5b846df8" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:b10b0e1d-3c5d-400e-a04f-bf134e64e17a", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "38943H3-54", - "key": "manufacturerPartId" - }, - { - "value": "NO-580235297153817773797719", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:68c9b1bf-b2c1-456a-883c-2aac5f5cb5f4", - "partTypeInformation": { - "manufacturerPartId": "38943H3-54", - "customerPartId": "38943H3-54", - "classification": "component", - "nameAtManufacturer": "Engineering Plastics", - "nameAtCustomer": "Engineering Plastics" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:393f7bf3-c73f-4b0d-86ee-f5be8aa338c4" + }, { + "quantity" : { + "quantityNumber" : "0.2341", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" } - } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b86bfe10-6a4f-41be-8a00-6f11ce38702e" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-712627233731926672258402", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:92657e85-0800-4c02-bcf2-ba1e09bf856c", - "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "31487X6-88", - "key": "manufacturerPartId" - }, - { - "value": "NO-952052680031837154964801", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:1ac0b95c-c8e1-49e3-842b-eae13822a7ce", - "partTypeInformation": { - "manufacturerPartId": "31487X6-88", - "customerPartId": "31487X6-88", - "classification": "component", - "nameAtManufacturer": "Engineering Plastics", - "nameAtCustomer": "Engineering Plastics" + "catenaXId" : "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + }, { + "catenaXId" : "urn:uuid:393f7bf3-c73f-4b0d-86ee-f5be8aa338c4", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" } - } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5eb6d06a-f873-4ada-9fac-8431ad5a600d" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "91908V9-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-272166193349674685284302", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:f60afb32-240e-4369-bf20-054335c0ef5d", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000000BJTL", - "key": "manufacturerId" - }, - { - "value": "95657762-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-139466304855242643447025", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:936e9f19-e777-4acb-881d-fe0ff722343b", - "partTypeInformation": { - "manufacturerPartId": "95657762-59", - "customerPartId": "95657762-59", - "classification": "component", - "nameAtManufacturer": "Door Key", - "nameAtCustomer": "Door Key" - } - } + "catenaXId" : "urn:uuid:393f7bf3-c73f-4b0d-86ee-f5be8aa338c4", + "partTypeInformation" : { + "manufacturerPartId" : "91908V9-48", + "customerPartId" : "91908V9-48", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "08243L1-15", + "key" : "manufacturerPartId" + }, { + "value" : "NO-357088932832875081865069", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:c1c189d4-c1af-42ad-8e15-a7ed836b4aa7", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B3NX", - "key": "manufacturerId" - }, - { - "value": "80833J7-99", - "key": "manufacturerPartId" - }, - { - "value": "NO-171010696449453874507690", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:68766b51-f794-4033-bcb1-f635ed309cd4", - "partTypeInformation": { - "manufacturerPartId": "80833J7-99", - "customerPartId": "80833J7-99", - "classification": "component", - "nameAtManufacturer": "Sensor", - "nameAtCustomer": "Sensor" - } - } + "catenaXId" : "urn:uuid:5eb6d06a-f873-4ada-9fac-8431ad5a600d", + "partTypeInformation" : { + "manufacturerPartId" : "08243L1-15", + "customerPartId" : "08243L1-15", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + }, { + "catenaXId" : "urn:uuid:b86bfe10-6a4f-41be-8a00-6f11ce38702e", + "childParts" : [ ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "87729C4-85", + "key" : "manufacturerPartId" + }, { + "value" : "NO-779736395462962938391822", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b86bfe10-6a4f-41be-8a00-6f11ce38702e", + "partTypeInformation" : { + "manufacturerPartId" : "87729C4-85", + "customerPartId" : "87729C4-85", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "35360R3-90", + "key" : "manufacturerPartId" + }, { + "value" : "NO-989414344642730064939021", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4b2b21d0-8fed-4d32-b262-f75c5b846df8", + "partTypeInformation" : { + "manufacturerPartId" : "35360R3-90", + "customerPartId" : "35360R3-90", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-463859804701536440600568", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fa5804f1-8d4e-437c-aca2-a5491be61758", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-138020556239094892557660", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:badddd8a-0abf-4457-9d33-6eb05a3ac0ef", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-372590292378965503190624", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8eb9285f-5b10-4d5a-af7e-44e7fb0520f1", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-085985814115682170912173", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7bbbc63f-ba86-4e1c-ad78-6bdb4a125783", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-515996863347176959678004", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:6c99f3cf-2de8-492b-b3d2-a36e072b575d", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:68766b51-f794-4033-bcb1-f635ed309cd4", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.1908", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:edfe4b76-0be3-4934-8afd-ff9e7fb27aa0" - } - ] - } + "catenaXId" : "urn:uuid:8914a66e-b59b-405f-afff-b97d71ebece3", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-611495301031917154471195", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:1141a53c-7bff-46c6-8890-7e2c2e69c2e9", - "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AXS3", - "key": "manufacturerId" - }, - { - "value": "15006Y8-35", - "key": "manufacturerPartId" - }, - { - "value": "NO-330952488764194522460674", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:2687fd84-825d-4923-b1ab-66b70f002929", - "partTypeInformation": { - "manufacturerPartId": "15006Y8-35", - "customerPartId": "15006Y8-35", - "classification": "component", - "nameAtManufacturer": "Glue", - "nameAtCustomer": "Glue" + "catenaXId" : "urn:uuid:a0f6803c-e4dc-4cda-8ad2-91cc57868449", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-517537872389552545347888", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5371bcac-94d0-4254-9292-6666b8e28204", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-931977840620838441099091", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:04b8c677-a058-4393-94c1-5c5a48a27535", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-674300653336015182672214", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:36131844-36f1-426d-ba5d-a7ddcbb509d2", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-955637294337029656930454", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:309a2b1a-0061-4895-b587-f72b3d725f8f", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-436417650688886724541288", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a5d13a5a-5d77-4e74-810f-a9332cc19665", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-533124274497426817522463", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1e35e091-3d3d-421e-9c7e-14cf1c9442a6", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-760041300451903722626084", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:66769f42-4905-424c-8f35-f072fab5a734", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + }, { + "catenaXId" : "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.3301", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:620b64c1-3505-4740-b64e-32da0f1b82e5" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:0ea1aa79-10d4-4df1-8a5a-5b7eafd26163" + }, { + "quantity" : { + "quantityNumber" : "0.2001", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a14aa6a4-5be6-45d2-8544-b179baeeed7d" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "51130B5-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-210051382387574747995315", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:a6bb007f-bc16-4cc1-9ca2-218da8359879", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:2687fd84-825d-4923-b1ab-66b70f002929", - "childParts": [] - } + "catenaXId" : "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290", + "partTypeInformation" : { + "manufacturerPartId" : "51130B5-76", + "customerPartId" : "51130B5-76", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "28658K3-56", + "key" : "manufacturerPartId" + }, { + "value" : "NO-690455882011624333983284", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:eac8cf6b-ccd1-4b48-a6b6-0be69fc408fb", - "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "39625J5-78", - "key": "manufacturerPartId" - }, - { - "value": "NO-114476806681821604664171", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:edfe4b76-0be3-4934-8afd-ff9e7fb27aa0", - "partTypeInformation": { - "manufacturerPartId": "39625J5-78", - "customerPartId": "39625J5-78", - "classification": "component", - "nameAtManufacturer": "Engineering Plastics", - "nameAtCustomer": "Engineering Plastics" + "catenaXId" : "urn:uuid:620b64c1-3505-4740-b64e-32da0f1b82e5", + "partTypeInformation" : { + "manufacturerPartId" : "28658K3-56", + "customerPartId" : "28658K3-56", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "81235G4-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-912190603976514843251930", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a14aa6a4-5be6-45d2-8544-b179baeeed7d", + "partTypeInformation" : { + "manufacturerPartId" : "81235G4-75", + "customerPartId" : "81235G4-75", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + }, { + "catenaXId" : "urn:uuid:0ea1aa79-10d4-4df1-8a5a-5b7eafd26163", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" } - } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1d312e57-7a0f-47c0-8586-5b5c890d0bcf" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "34098S7-11", + "key" : "manufacturerPartId" + }, { + "value" : "NO-492327580217667430451578", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:058e08e7-063a-417b-bed9-75f1f77d70e0", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:133a0c0d-c5f1-4b2d-a5df-18765c55fba5", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.1908", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a2e2913b-4007-4288-a1ca-4b2252fa70d3" - } - ] - } + "catenaXId" : "urn:uuid:0ea1aa79-10d4-4df1-8a5a-5b7eafd26163", + "partTypeInformation" : { + "manufacturerPartId" : "34098S7-11", + "customerPartId" : "34098S7-11", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "78393J3-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-259583605850965985909486", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:905278cf-dcf5-4d51-a6a6-1e17923bd32d", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B3NX", - "key": "manufacturerId" - }, - { - "value": "28233H8-84", - "key": "manufacturerPartId" - }, - { - "value": "NO-857014921113068684287663", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:133a0c0d-c5f1-4b2d-a5df-18765c55fba5", - "partTypeInformation": { - "manufacturerPartId": "28233H8-84", - "customerPartId": "28233H8-84", - "classification": "component", - "nameAtManufacturer": "Sensor", - "nameAtCustomer": "Sensor" + "catenaXId" : "urn:uuid:1d312e57-7a0f-47c0-8586-5b5c890d0bcf", + "partTypeInformation" : { + "manufacturerPartId" : "78393J3-74", + "customerPartId" : "78393J3-74", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + }, { + "catenaXId" : "urn:uuid:ceb6b964-5779-49c1-b5e9-0ee70528fcbd", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a4a26b9c-9460-4cc5-8645-85916b86adb0" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-297452866581906730261974", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ceb6b964-5779-49c1-b5e9-0ee70528fcbd", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-146729557079961289905282", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a4a26b9c-9460-4cc5-8645-85916b86adb0", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-625635229566122009930947", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7b87f5d6-f75e-40f1-a439-779ae9f57a21", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-379150999339751935779974", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9940dd40-a292-4a27-9733-08b1ca750149", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-947622490362370933766973", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:24598808-94e6-4d80-a86f-b114fd316b80", - "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "69920P8-40", - "key": "manufacturerPartId" - }, - { - "value": "NO-763910304925769506397105", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:a2e2913b-4007-4288-a1ca-4b2252fa70d3", - "partTypeInformation": { - "manufacturerPartId": "69920P8-40", - "customerPartId": "69920P8-40", - "classification": "component", - "nameAtManufacturer": "NTIER Product", - "nameAtCustomer": "NTIER Product" + "catenaXId" : "urn:uuid:a1082992-cc3b-4da1-af6b-aa692ed71461", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + }, { + "catenaXId" : "urn:uuid:3e300930-0e1c-459c-8914-1ac631176716", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8f9d8c7f-6d7a-48f1-9959-9fa3a1a7a891" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-066856325264319536740496", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3e300930-0e1c-459c-8914-1ac631176716", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-175671273535589941197943", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8f9d8c7f-6d7a-48f1-9959-9fa3a1a7a891", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-732656251619472638970521", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8e916bb5-34cb-48cc-bb30-3dea756a25b0", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-552006940575520649122391", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6c7bdfd8-7116-46da-b8e2-7322acd64042", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-692153553533989280372178", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c4cd2818-b616-4a28-b327-7e7e449fbdae", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-270108677396418821910638", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:98c92d24-0d86-4dfa-97bb-1f67794fc9f9", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-919753113770584725248439", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e1ea599a-255d-4abf-a385-70f63cbe9794", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-162235183519918615040507", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cd55d855-754f-4a60-935a-88768f0ed2fb", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-142999510701784902291319", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e0566a95-a34f-44e0-a562-f5db3367f7f3", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" } - ] -} + } ] +} \ No newline at end of file From 93794f704e99faddf333527aad6a77f28a7c9e2a Mon Sep 17 00:00:00 2001 From: ds-alexander-bulgakov Date: Mon, 12 Dec 2022 08:36:55 +0100 Subject: [PATCH 03/62] THI-990: adjusted tavern_helpers to array in response for getJobs --- api-tests/tavern_helpers.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/api-tests/tavern_helpers.py b/api-tests/tavern_helpers.py index 766df7473e..3c6508c1f8 100644 --- a/api-tests/tavern_helpers.py +++ b/api-tests/tavern_helpers.py @@ -75,15 +75,17 @@ def errors_for_unknown_globalAssetId_are_correct(response): def status_of_jobs_are_as_expected(response, expected_status): - print(response.json()) - for i in response.json(): + job_list = response.json().get("content") + print("Job Liste: ", job_list) + for i in job_list: actual_status = i.get("state") print(f"Asserting expected status '{expected_status}' to be equal to actual status '{actual_status}'") assert expected_status in actual_status def status_of_all_jobs_are_given(response): - print(response.json()) + job_list = response.json().get("content") + print("Job Liste: ", job_list) for i in response.json(): actual_status = i.get("state") assert any( From e6135951d651933e0b8a9ac35298862f58720143 Mon Sep 17 00:00:00 2001 From: Adam Bugajewski Date: Mon, 12 Dec 2022 11:10:34 +0100 Subject: [PATCH 04/62] feat(api):[TRI-904] Refactor API attributes using consistent naming - change jobParameter to parameter in GET responses --- CHANGELOG.md | 2 ++ api/irs-v1.0.yaml | 34 +++++++++---------- .../irs/configuration/OpenApiExamples.java | 8 ++--- .../irs/connector/job/JobOrchestrator.java | 2 +- .../irs/connector/job/MultiTransferJob.java | 2 +- .../tractusx/irs/IrsFunctionalTest.java | 2 +- .../connector/job/InMemoryJobStoreTest.java | 2 +- .../connector/job/JobOrchestratorTest.java | 4 +-- .../connector/job/PersistentJobStoreTest.java | 2 +- .../eclipse/tractusx/irs/util/TestMother.java | 2 +- .../eclipse/tractusx/irs/component/Job.java | 2 +- 11 files changed, 32 insertions(+), 30 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c9820834d..b4a187bb7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Changed +- Change 'jobParameter' to 'parameter' in GET calls in IRS API ### Known knowns - PLACEHOLDER REMOVE IF EMPTY: risks that were introduced or discovered in the release and are known but not resolved diff --git a/api/irs-v1.0.yaml b/api/irs-v1.0.yaml index 05e62bea20..aba4886ba4 100644 --- a/api/irs-v1.0.yaml +++ b/api/irs-v1.0.yaml @@ -316,7 +316,9 @@ components: exceptionDate: 2022-02-03T14:48:54.709Z globalAssetId: urn:uuid:6c311d29-5753-46d4-b32c-19b918ea93b0 id: e5347c88-a921-11ec-b909-0242ac120002 - jobParameter: + lastModifiedOn: 2022-02-03T14:48:54.709Z + owner: "" + parameter: aspects: - SerialPartTypization - AddressAspect @@ -324,8 +326,6 @@ components: collectAspects: false depth: 4 direction: downward - lastModifiedOn: 2022-02-03T14:48:54.709Z - owner: "" startedOn: 2022-02-03T14:48:54.709Z state: CANCELED summary: @@ -361,7 +361,9 @@ components: exceptionDate: 2022-02-03T14:48:54.709Z globalAssetId: urn:uuid:6c311d29-5753-46d4-b32c-19b918ea93b0 id: e5347c88-a921-11ec-b909-0242ac120002 - jobParameter: + lastModifiedOn: 2022-02-03T14:48:54.709Z + owner: "" + parameter: aspects: - SerialPartTypization - AddressAspect @@ -369,8 +371,6 @@ components: collectAspects: false depth: 4 direction: downward - lastModifiedOn: 2022-02-03T14:48:54.709Z - owner: "" startedOn: 2022-02-03T14:48:54.709Z state: COMPLETED summary: @@ -488,7 +488,9 @@ components: exceptionDate: 2022-02-03T14:48:54.709Z globalAssetId: urn:uuid:6c311d29-5753-46d4-b32c-19b918ea93b0 id: e5347c88-a921-11ec-b909-0242ac120002 - jobParameter: + lastModifiedOn: 2022-02-03T14:48:54.709Z + owner: "" + parameter: aspects: - SerialPartTypization - AddressAspect @@ -496,8 +498,6 @@ components: collectAspects: false depth: 4 direction: downward - lastModifiedOn: 2022-02-03T14:48:54.709Z - owner: "" startedOn: 2022-02-03T14:48:54.709Z state: ERROR summary: @@ -525,7 +525,9 @@ components: exceptionDate: 2022-02-03T14:48:54.709Z globalAssetId: urn:uuid:6c311d29-5753-46d4-b32c-19b918ea93b0 id: e5347c88-a921-11ec-b909-0242ac120002 - jobParameter: + lastModifiedOn: 2022-02-03T14:48:54.709Z + owner: "" + parameter: aspects: - SerialPartTypization - AddressAspect @@ -533,8 +535,6 @@ components: collectAspects: false depth: 4 direction: downward - lastModifiedOn: 2022-02-03T14:48:54.709Z - owner: "" startedOn: 2022-02-03T14:48:54.709Z state: COMPLETED summary: @@ -629,7 +629,9 @@ components: exceptionDate: 2022-02-03T14:48:54.709Z globalAssetId: urn:uuid:6c311d29-5753-46d4-b32c-19b918ea93b0 id: e5347c88-a921-11ec-b909-0242ac120002 - jobParameter: + lastModifiedOn: 2022-02-03T14:48:54.709Z + owner: "" + parameter: aspects: - SerialPartTypization - AddressAspect @@ -637,8 +639,6 @@ components: collectAspects: false depth: 4 direction: downward - lastModifiedOn: 2022-02-03T14:48:54.709Z - owner: "" startedOn: 2022-02-03T14:48:54.709Z state: RUNNING summary: @@ -858,14 +858,14 @@ components: maxLength: 36 minLength: 36 pattern: "/^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$/i" - jobParameter: - $ref: '#/components/schemas/JobParameter' lastModifiedOn: type: string format: date-time owner: type: string description: The IRS api consumer. + parameter: + $ref: '#/components/schemas/JobParameter' startedOn: type: string format: date-time diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/OpenApiExamples.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/OpenApiExamples.java index 5024b5cbd3..ec4e798391 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/OpenApiExamples.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/OpenApiExamples.java @@ -134,7 +134,7 @@ private Example createFailedJobResult() { .startedOn(EXAMPLE_ZONED_DATETIME) .lastModifiedOn(EXAMPLE_ZONED_DATETIME) .summary(createSummary()) - .jobParameter(createJobParameter()) + .parameter(createJobParameter()) .exception(createJobException()) .build()) .build()); @@ -152,7 +152,7 @@ private Example createPartialJobResult() { .lastModifiedOn(EXAMPLE_ZONED_DATETIME) .completedOn(EXAMPLE_ZONED_DATETIME) .summary(createSummary()) - .jobParameter(createJobParameter()) + .parameter(createJobParameter()) .exception(createJobException()) .build()) .build()); @@ -196,7 +196,7 @@ private Example createCompleteJobResult() { .completedOn(EXAMPLE_ZONED_DATETIME) .owner("") .summary(createSummary()) - .jobParameter(createJobParameter()) + .parameter(createJobParameter()) .exception(createJobException()) .build()) .relationships(List.of(createRelationship())) @@ -339,7 +339,7 @@ private Example createCanceledJobResult() { .startedOn(EXAMPLE_ZONED_DATETIME) .lastModifiedOn(EXAMPLE_ZONED_DATETIME) .completedOn(EXAMPLE_ZONED_DATETIME) - .jobParameter(createJobParameter()) + .parameter(createJobParameter()) .exception(createJobException()) .summary(createSummary()) .build()) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobOrchestrator.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobOrchestrator.java index 65b404e7f7..07268b30b0 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobOrchestrator.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobOrchestrator.java @@ -299,7 +299,7 @@ private Job createJob(final String globalAssetId, final JobParameter jobData) { .lastModifiedOn(ZonedDateTime.now(ZoneOffset.UTC)) .state(JobState.UNSAVED) .owner(securityHelperService.getClientIdClaim()) - .jobParameter(jobData) + .parameter(jobData) .build(); } diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/MultiTransferJob.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/MultiTransferJob.java index 884ceb749a..dd36512bd8 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/MultiTransferJob.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/MultiTransferJob.java @@ -97,7 +97,7 @@ public String getGlobalAssetId() { @JsonIgnore public JobParameter getJobParameter() { - return getJob().getJobParameter(); + return getJob().getParameter(); } /** diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/IrsFunctionalTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/IrsFunctionalTest.java index d9729f36fe..73979e66bf 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/IrsFunctionalTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/IrsFunctionalTest.java @@ -112,7 +112,7 @@ void shouldStartJobAndRetrieveResult() { assertThat(finishedJob.get().getBpns()).hasSize(1); assertThat(finishedJob.get().getJob()).isNotNull(); assertThat(finishedJob.get().getJob().getSummary()).isNotNull(); - assertThat(finishedJob.get().getJob().getJobParameter()).isNotNull(); + assertThat(finishedJob.get().getJob().getParameter()).isNotNull(); assertThat(finishedJob.get().getJob().getOwner()).isNotBlank(); } diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/InMemoryJobStoreTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/InMemoryJobStoreTest.java index 04802cfe66..648e4d9df2 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/InMemoryJobStoreTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/InMemoryJobStoreTest.java @@ -411,7 +411,7 @@ private MultiTransferJob createJob(final String jobId) { .exception("SomeError") .exceptionDate(ZonedDateTime.now()) .build()) - .jobParameter(jobParameter()) + .parameter(jobParameter()) .build()) .build(); } diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/JobOrchestratorTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/JobOrchestratorTest.java index 5ed41e590c..f6a2a8b3a4 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/JobOrchestratorTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/JobOrchestratorTest.java @@ -141,7 +141,7 @@ void startJob_WithZeroDataRequest_CompletesJob() { // Arrange when(handler.initiate(any(MultiTransferJob.class))).thenReturn(Stream.empty()); - var response = sut.startJob(job.getGlobalAssetId(), job.getJob().getJobParameter()); + var response = sut.startJob(job.getGlobalAssetId(), job.getJob().getParameter()); var newJob = getStartedJob(); // Assert @@ -161,7 +161,7 @@ void startJob_WithSuccessfulTransferStarts_ReturnsOk() { when(processManager.initiateRequest(eq(dataRequest), any(), any(), eq(jobParameter()))).thenReturn(okResponse); // Act - var response = sut.startJob(job.getGlobalAssetId(), job.getJob().getJobParameter()); + var response = sut.startJob(job.getGlobalAssetId(), job.getJob().getParameter()); // Assert var newJob = getStartedJob(); diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/PersistentJobStoreTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/PersistentJobStoreTest.java index ff750b7405..b867f7990b 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/PersistentJobStoreTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/PersistentJobStoreTest.java @@ -444,7 +444,7 @@ private MultiTransferJob createJob(final String jobId) { .exception("SomeError") .exceptionDate(ZonedDateTime.now()) .build()) - .jobParameter(jobParameter()) + .parameter(jobParameter()) .build()) .build(); } 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 0c428e6d07..c264e1ad6b 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 @@ -142,7 +142,7 @@ public Job fakeJob(JobState state) { .startedOn(ZonedDateTime.now(ZoneId.of("UTC"))) .owner(faker.lorem().characters()) .lastModifiedOn(ZonedDateTime.now(ZoneId.of("UTC"))) - .jobParameter(jobParameter()) + .parameter(jobParameter()) .completedOn(ZonedDateTime.now(ZoneId.of("UTC"))) .build(); } diff --git a/irs-models/src/main/java/org/eclipse/tractusx/irs/component/Job.java b/irs-models/src/main/java/org/eclipse/tractusx/irs/component/Job.java index c7e9efd920..32e7b4a04d 100644 --- a/irs-models/src/main/java/org/eclipse/tractusx/irs/component/Job.java +++ b/irs-models/src/main/java/org/eclipse/tractusx/irs/component/Job.java @@ -105,6 +105,6 @@ public class Job { private Summary summary; @Schema(description = "The passed job parameters", implementation = JobParameter.class) - private JobParameter jobParameter; + private JobParameter parameter; } From c8495f57f17abd41c939a79ab30f1e5e2a75023f Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Mon, 12 Dec 2022 15:06:06 +0100 Subject: [PATCH 05/62] feat(fix):[TRI-XXX] fix expected file model generated --- .../local/CxTestDataContainer.java | 29 +++++++++----- .../irs/edc/CxTestDataAnalyzerTest.java | 40 ++++++++++++------- 2 files changed, 45 insertions(+), 24 deletions(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/local/CxTestDataContainer.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/local/CxTestDataContainer.java index 50551aa308..4c9761733b 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/local/CxTestDataContainer.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/local/CxTestDataContainer.java @@ -51,24 +51,35 @@ public Optional getByCatenaXId(final String catenaXId) { @SuppressWarnings("PMD.DataClass") @Data public static class CxTestData { + + public static final String SERIAL_PART_ASPECT_TYPE = "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization"; + public static final String ASSEMBLY_PART_ASPECT_TYPE = "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship"; + public static final String SINGLE_LEVEL_USAGE_BUILT_ASPECT_TYPE = "urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt"; + public static final String PART_AS_PLANNED_ASPECT_TYPE = "urn:bamm:io.catenax.part_as_planned:1.0.0#PartAsPlanned"; + public static final String SINGLE_LEVEL_BOM_AS_PLANNED_ASPECT_TYPE = "urn:bamm:io.catenax.single_level_bom_as_planned:1.0.2#SingleLevelBomAsPlanned"; + public static final String BATCH_ASPECT_TYPE = "urn:bamm:io.catenax.batch:1.0.0#Batch"; + public static final String MATERIAL_FOR_RECYCLING_ASPECT_TYPE = "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling"; + public static final String PRODUCT_DESCRIPTION_ASPECT_TYPE = "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription"; + public static final String PHYSICAL_DIMENSION_ASPECT_TYPE = "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension"; + private String catenaXId; - @JsonProperty("urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization") + @JsonProperty(SERIAL_PART_ASPECT_TYPE) private List> serialPartTypization; - @JsonProperty("urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship") + @JsonProperty(ASSEMBLY_PART_ASPECT_TYPE) private List> assemblyPartRelationship; - @JsonProperty("urn:bamm:io.catenax.single_level_usage_as_built:1.0.1#SingleLevelUsageAsBuilt") + @JsonProperty(SINGLE_LEVEL_USAGE_BUILT_ASPECT_TYPE) private List> singleLevelUsageAsBuilt; - @JsonProperty("urn:bamm:io.catenax.part_as_planned:1.0.0#PartAsPlanned") + @JsonProperty(PART_AS_PLANNED_ASPECT_TYPE) private List> partAsPlanned; - @JsonProperty("urn:bamm:io.catenax.single_level_bom_as_planned:1.0.2#SingleLevelBomAsPlanned") + @JsonProperty(SINGLE_LEVEL_BOM_AS_PLANNED_ASPECT_TYPE) private List> singleLevelBomAsPlanned; - @JsonProperty("urn:bamm:io.catenax.batch:1.0.0#Batch") + @JsonProperty(BATCH_ASPECT_TYPE) private List> batch; - @JsonProperty("urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling") + @JsonProperty(MATERIAL_FOR_RECYCLING_ASPECT_TYPE) private List> materialForRecycling; - @JsonProperty("urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription") + @JsonProperty(PRODUCT_DESCRIPTION_ASPECT_TYPE) private List> productDescription; - @JsonProperty("urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension") + @JsonProperty(PHYSICAL_DIMENSION_ASPECT_TYPE) private List> physicalDimension; public Optional> getSerialPartTypization() { diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/CxTestDataAnalyzerTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/CxTestDataAnalyzerTest.java index 2485d277b2..8db228b370 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/CxTestDataAnalyzerTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/CxTestDataAnalyzerTest.java @@ -22,6 +22,7 @@ package org.eclipse.tractusx.irs.edc; import static org.assertj.core.api.Assertions.assertThat; +import static org.eclipse.tractusx.irs.configuration.local.CxTestDataContainer.CxTestData.*; import java.io.File; import java.io.IOException; @@ -29,11 +30,13 @@ import java.util.List; import java.util.Map; import java.util.Optional; +import java.util.UUID; import java.util.concurrent.atomic.AtomicLong; import lombok.Builder; import lombok.extern.slf4j.Slf4j; import org.eclipse.tractusx.irs.component.Relationship; +import org.eclipse.tractusx.irs.component.Submodel; import org.eclipse.tractusx.irs.component.enums.BomLifecycle; import org.eclipse.tractusx.irs.component.enums.Direction; import org.eclipse.tractusx.irs.configuration.local.CxTestDataContainer; @@ -135,7 +138,7 @@ void shouldGetSameNumberOfSubmodelsAndCreateExpectationFile() throws IOException .build(); final Long expectedNumberOfSubmodels = countExpectedNumberOfSubmodelsFor(testParameters.globalAssetId, testParameters); - final List> submodels = getSubmodelsFor(testParameters.globalAssetId, testParameters); + final List submodels = getSubmodelsFor(testParameters.globalAssetId, testParameters); log.info("Results for globalAssetId {} and bomLifecycle {} with direction {}", testParameters.globalAssetId, testParameters.bomLifecycle, testParameters.direction); log.info("Expected number of submodels: " + expectedNumberOfSubmodels); @@ -219,6 +222,8 @@ private Long countExpectedNumberOfSubmodelsFor(final String catenaXId, final Tes checkAndIncrementCounter(testParameters.shouldCountSerialPartTypization, cxTestData.flatMap(CxTestDataContainer.CxTestData::getSerialPartTypization), counter); + checkAndIncrementCounter(testParameters.shouldCountSingleLevelUsageAsBuilt, + cxTestData.flatMap(CxTestDataContainer.CxTestData::getSingleLevelUsageAsBuilt), counter); checkAndIncrementCounter(testParameters.shouldCountBatch, cxTestData.flatMap(CxTestDataContainer.CxTestData::getBatch), counter); checkAndIncrementCounter(testParameters.shouldCountMaterialForRecycling, @@ -247,41 +252,44 @@ private Long countExpectedNumberOfSubmodelsFor(final String catenaXId, final Tes return 0L; } - private List> getSubmodelsFor(final String catenaXId, final TestParameters testParameters) { + private List getSubmodelsFor(final String catenaXId, final TestParameters testParameters) { final Optional cxTestData = cxTestDataContainer.getByCatenaXId(catenaXId); final RelationshipAspect relationshipAspect = RelationshipAspect.from(testParameters.bomLifecycle, testParameters.direction); Optional> relationshipSubmodelData = Optional.empty(); - final List> submodels = new ArrayList<>(); + final List submodels = new ArrayList<>(); if (relationshipAspect.equals(RelationshipAspect.AssemblyPartRelationship)) { relationshipSubmodelData = cxTestData.flatMap(CxTestDataContainer.CxTestData::getAssemblyPartRelationship); - checkAndAddSubmodel(testParameters.shouldCountAssemblyPartRelationship, relationshipSubmodelData, submodels); + checkAndAddSubmodel(testParameters.shouldCountAssemblyPartRelationship, relationshipSubmodelData, submodels, ASSEMBLY_PART_ASPECT_TYPE); checkAndAddSubmodel(testParameters.shouldCountSerialPartTypization, - cxTestData.flatMap(CxTestDataContainer.CxTestData::getSerialPartTypization), submodels); + cxTestData.flatMap(CxTestDataContainer.CxTestData::getSerialPartTypization), submodels, SERIAL_PART_ASPECT_TYPE); + checkAndAddSubmodel(testParameters.shouldCountSingleLevelUsageAsBuilt, + cxTestData.flatMap(CxTestDataContainer.CxTestData::getSingleLevelBomAsPlanned), submodels, SINGLE_LEVEL_USAGE_BUILT_ASPECT_TYPE); checkAndAddSubmodel(testParameters.shouldCountBatch, - cxTestData.flatMap(CxTestDataContainer.CxTestData::getBatch), submodels); + cxTestData.flatMap(CxTestDataContainer.CxTestData::getBatch), submodels, BATCH_ASPECT_TYPE); checkAndAddSubmodel(testParameters.shouldCountMaterialForRecycling, - cxTestData.flatMap(CxTestDataContainer.CxTestData::getMaterialForRecycling), submodels); + cxTestData.flatMap(CxTestDataContainer.CxTestData::getMaterialForRecycling), submodels, MATERIAL_FOR_RECYCLING_ASPECT_TYPE); checkAndAddSubmodel(testParameters.shouldCountProductDescription, - cxTestData.flatMap(CxTestDataContainer.CxTestData::getProductDescription), submodels); + cxTestData.flatMap(CxTestDataContainer.CxTestData::getProductDescription), submodels, PRODUCT_DESCRIPTION_ASPECT_TYPE); checkAndAddSubmodel(testParameters.shouldCountPhysicalDimension, - cxTestData.flatMap(CxTestDataContainer.CxTestData::getPhysicalDimension), submodels); + cxTestData.flatMap(CxTestDataContainer.CxTestData::getPhysicalDimension), submodels, PHYSICAL_DIMENSION_ASPECT_TYPE); } else if (relationshipAspect.equals(RelationshipAspect.SingleLevelBomAsPlanned)) { relationshipSubmodelData = cxTestData.flatMap(CxTestDataContainer.CxTestData::getSingleLevelBomAsPlanned); - checkAndAddSubmodel(testParameters.shouldCountSingleLevelBomAsPlanned, relationshipSubmodelData, submodels); + checkAndAddSubmodel(testParameters.shouldCountSingleLevelBomAsPlanned, relationshipSubmodelData, submodels, + SINGLE_LEVEL_BOM_AS_PLANNED_ASPECT_TYPE); checkAndAddSubmodel(testParameters.shouldCountPartAsPlanned, - cxTestData.flatMap(CxTestDataContainer.CxTestData::getPartAsPlanned), submodels); + cxTestData.flatMap(CxTestDataContainer.CxTestData::getPartAsPlanned), submodels, PART_AS_PLANNED_ASPECT_TYPE); } if (relationshipSubmodelData.isPresent()) { final RelationshipSubmodel relationshipSubmodel = objectMapper.convertValue(relationshipSubmodelData, relationshipAspect.getSubmodelClazz()); relationshipSubmodel.asRelationships().forEach(relationship -> { final String childGlobalAssetId = relationship.getLinkedItem().getChildCatenaXId().getGlobalAssetId(); - final List> childSubmodels = getSubmodelsFor(childGlobalAssetId, testParameters); + final List childSubmodels = getSubmodelsFor(childGlobalAssetId, testParameters); submodels.addAll(childSubmodels); }); } @@ -295,9 +303,10 @@ private void checkAndIncrementCounter(final boolean shouldCountSubmodel, final O } } - private void checkAndAddSubmodel(final boolean shouldCountSubmodel, final Optional> submodel, final List> submodels) { - if (shouldCountSubmodel && submodel.isPresent()) { - submodels.add(submodel.get()); + private void checkAndAddSubmodel(final boolean shouldCountSubmodel, final Optional> payload, + final List submodels, final String aspectType) { + if (shouldCountSubmodel && payload.isPresent()) { + submodels.add(Submodel.from(UUID.randomUUID().toString(), aspectType, payload.get())); } } @@ -314,6 +323,7 @@ private static class TestParameters { final boolean shouldCountProductDescription; final boolean shouldCountPhysicalDimension; final boolean shouldCountSingleLevelBomAsPlanned; + final boolean shouldCountSingleLevelUsageAsBuilt; final boolean shouldCountPartAsPlanned; final boolean shouldCreateExpectedRelationshipsFile; From 0504e9fefe658ea0dbb03d0c97f740cabd73db4d Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Tue, 13 Dec 2022 11:24:04 +0100 Subject: [PATCH 06/62] feat(fix):[TRI-XXX] fix assertions --- .../org/eclipse/tractusx/irs/edc/CxTestDataAnalyzerTest.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/CxTestDataAnalyzerTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/CxTestDataAnalyzerTest.java index 8db228b370..0add0d6c94 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/CxTestDataAnalyzerTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/CxTestDataAnalyzerTest.java @@ -247,9 +247,8 @@ private Long countExpectedNumberOfSubmodelsFor(final String catenaXId, final Tes final long expectedNumberOfChildSubmodels = countExpectedNumberOfSubmodelsFor(childGlobalAssetId, testParameters); counter.addAndGet(expectedNumberOfChildSubmodels); }); - return counter.get(); } - return 0L; + return counter.get(); } private List getSubmodelsFor(final String catenaXId, final TestParameters testParameters) { From dc899a741f841aff995bf9bea438186ae084e30d Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Tue, 13 Dec 2022 16:40:22 +0100 Subject: [PATCH 07/62] fix(testdata):[-] Fix object copy --- testdata-transform/transform-and-upload.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testdata-transform/transform-and-upload.py b/testdata-transform/transform-and-upload.py index 1e22212b1c..c85e8e9de0 100644 --- a/testdata-transform/transform-and-upload.py +++ b/testdata-transform/transform-and-upload.py @@ -5,6 +5,7 @@ import math import time import uuid +from copy import copy import requests from requests.adapters import HTTPAdapter, Retry @@ -242,7 +243,7 @@ def check_url_args(submodel_server_upload_urls_, submodel_server_urls_, edc_uplo for tmp_key in tmp_keys: if "Batch" in tmp_key or "SerialPartTypization" in tmp_key: - specific_asset_ids = tmp_data[tmp_key][0]["localIdentifiers"] + specific_asset_ids = copy(tmp_data[tmp_key][0]["localIdentifiers"]) name_at_manufacturer = tmp_data[tmp_key][0]["partTypeInformation"]["nameAtManufacturer"].replace(" ", "") if "PartAsPlanned" in tmp_key: name_at_manufacturer = tmp_data[tmp_key][0]["partTypeInformation"]["nameAtManufacturer"].replace(" ", "") From a9fc0422851ae146e73c5eaa55fa77bcbbdf7b46 Mon Sep 17 00:00:00 2001 From: ds-alexander-bulgakov Date: Wed, 14 Dec 2022 07:26:46 +0100 Subject: [PATCH 08/62] THI-990: some final fixes --- api-tests/irs-api-tests.tavern.yaml | 16 ++++++++-------- api-tests/tavern_helpers.py | 14 +++++++++----- 2 files changed, 17 insertions(+), 13 deletions(-) diff --git a/api-tests/irs-api-tests.tavern.yaml b/api-tests/irs-api-tests.tavern.yaml index 605337d4c6..06cfe79e52 100644 --- a/api-tests/irs-api-tests.tavern.yaml +++ b/api-tests/irs-api-tests.tavern.yaml @@ -799,7 +799,7 @@ stages: save: json: job_id: id - delay_after: 340 + delay_after: 400 - name: fetch response for created job and check details request: @@ -914,7 +914,7 @@ stages: - name: get all COMPLETED jobs request: - url: "{tavern.env_vars.IRS_HOST}/irs/jobs?states=COMPLETED" + url: "{tavern.env_vars.IRS_HOST}/irs/jobs?jobStates=COMPLETED" method: GET headers: content-type: application/json @@ -959,7 +959,7 @@ stages: - name: get all ERROR jobs request: - url: "{tavern.env_vars.IRS_HOST}/irs/jobs?states=ERROR" + url: "{tavern.env_vars.IRS_HOST}/irs/jobs?jobStates=ERROR" method: GET headers: content-type: application/json @@ -1004,7 +1004,7 @@ stages: - name: get all INITIAL jobs request: - url: "{tavern.env_vars.IRS_HOST}/irs/jobs?states=INITIAL" + url: "{tavern.env_vars.IRS_HOST}/irs/jobs?jobStates=INITIAL" method: GET headers: content-type: application/json @@ -1069,7 +1069,7 @@ stages: - name: get all RUNNING jobs request: - url: "{tavern.env_vars.IRS_HOST}/irs/jobs?states=RUNNING" + url: "{tavern.env_vars.IRS_HOST}/irs/jobs?jobStates=RUNNING" method: GET headers: content-type: application/json @@ -1291,7 +1291,7 @@ stages: - name: get all jobs with status UNSAVED, INITIAL, RUNNING, TRANSFERS_FINISHED and CANCELED request: - url: "{tavern.env_vars.IRS_HOST}/irs/jobs?states=UNSAVED, INITIAL, RUNNING, TRANSFERS_FINISHED, CANCELED" + url: "{tavern.env_vars.IRS_HOST}/irs/jobs?jobStates=UNSAVED, INITIAL, RUNNING, TRANSFERS_FINISHED, CANCELED" method: GET headers: content-type: application/json @@ -1335,7 +1335,7 @@ stages: - name: get all jobs with status COMPLETED and ERROR request: - url: "{tavern.env_vars.IRS_HOST}/irs/jobs?states=COMPLETED, ERROR" + url: "{tavern.env_vars.IRS_HOST}/irs/jobs?jobState=COMPLETED, ERROR" method: GET headers: content-type: application/json @@ -1379,7 +1379,7 @@ stages: - name: get all jobs with status COMPLETED and ERROR request: - url: "{tavern.env_vars.IRS_HOST}/irs/jobs?states=COMPLETED, ERROR" + url: "{tavern.env_vars.IRS_HOST}/irs/jobs?jobStates=COMPLETED, ERROR" method: GET headers: content-type: application/json diff --git a/api-tests/tavern_helpers.py b/api-tests/tavern_helpers.py index 3c6508c1f8..15bd949d32 100644 --- a/api-tests/tavern_helpers.py +++ b/api-tests/tavern_helpers.py @@ -86,7 +86,7 @@ def status_of_jobs_are_as_expected(response, expected_status): def status_of_all_jobs_are_given(response): job_list = response.json().get("content") print("Job Liste: ", job_list) - for i in response.json(): + for i in job_list: actual_status = i.get("state") assert any( ["COMPLETED" in actual_status, "ERROR" in actual_status, "INITIAL" in actual_status, "CANCELED" in actual_status, "RUNNING" in actual_status] @@ -127,21 +127,24 @@ def check_timestamps_for_not_completed_jobs(response): def check_startedOn_timestamp_exists(response): - for i in response.json(): + response_list = response.json().get("content") + for i in response_list: startedOn = i.get("startedOn") print("Check if startedOn timestamp is existing.") assert startedOn is not None def check_completedOn_timestamp_not_exists(response): - for i in response.json(): + response_list = response.json().get("content") + for i in response_list: completedOn = i.get("completedOn") print("Check if completedOn timestamp is missing.") assert completedOn is None def check_completedOn_timestamp_exists(response): - for i in response.json(): + response_list = response.json().get("content") + for i in response_list: completedOn = i.get("completedOn") print("Check if completedOn timestamp is existing.") assert completedOn is not None @@ -149,7 +152,8 @@ def check_completedOn_timestamp_exists(response): def check_startedOn_is_smaller_than_completedOn(response): - for i in response.json(): + response_list = response.json().get("content") + for i in response_list: completedOn_timestamp = datetime.strptime(i.get("completedOn")[:26], '%Y-%m-%dT%H:%M:%S.%f').timestamp() startedOn_timestamp = datetime.strptime(i.get("startedOn")[:26], '%Y-%m-%dT%H:%M:%S.%f').timestamp() print(f"Check if startedOn timestamp '{startedOn_timestamp}' is smaller than completedOn timestamp '{completedOn_timestamp}'") From 0ab98bada01f941ed0e6073089d22dede4b2db4a Mon Sep 17 00:00:00 2001 From: ds-alexander-bulgakov Date: Fri, 9 Dec 2022 15:37:18 +0100 Subject: [PATCH 09/62] THI-988: changed expected JSONs for DEV cucumber tests --- .../TRI-528-expected-relationships.json | 200 +- .../TRI-528-expected-submodels.json | 3342 +++++++------ .../TRI-704-expected-relationships.json | 200 +- .../TRI-704-expected-submodels.json | 4145 ++++++----------- .../TRI-767-expected-relationships.json | 208 +- .../TRI-767-expected-submodels.json | 3562 ++++++-------- 6 files changed, 4952 insertions(+), 6705 deletions(-) diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-relationships.json b/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-relationships.json index 182b759dbe..0aa27b9b64 100644 --- a/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-relationships.json +++ b/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-relationships.json @@ -1,7 +1,7 @@ { "relationships": [ { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -13,12 +13,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d71d22bf-1fca-49a4-aa39-3b2c4563327e" + "childCatenaXId": "urn:uuid:de9d233e-c371-490b-b02b-092756ccdd42" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -30,12 +30,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:97ddc65b-cb98-44e3-a21e-4940159dda34" + "childCatenaXId": "urn:uuid:625d9e00-b1c2-4d98-a9a7-fea9f00d2521" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -47,12 +47,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2bbd4409-1fd9-429d-bb7c-7297b67a4e34" + "childCatenaXId": "urn:uuid:94f95beb-2d2e-4275-af82-ef601d25e7db" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -64,12 +64,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e7bba1ca-c0e5-4e17-92eb-366ab7a9db92" + "childCatenaXId": "urn:uuid:82260db6-7ac1-4b61-9b98-e193cfbfcca4" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -81,12 +81,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:72a486fa-3ca0-4dc7-8c3a-893ed56ff874" + "childCatenaXId": "urn:uuid:d4e9558c-f75b-437d-8bd5-83fe14bdeeaf" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -98,12 +98,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:504cc0c4-4199-43bf-83d5-7ce575cf2170" + "childCatenaXId": "urn:uuid:a7fc6773-b3f2-4b9e-b0ca-586cbbd51dd9" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -115,12 +115,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0f006414-e0e8-40a4-85ed-c126322b3b61" + "childCatenaXId": "urn:uuid:6bd19830-3f63-4915-906d-0dd26196b7a6" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -132,12 +132,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2a1bd6c6-69c3-41b6-8154-596a79567017" + "childCatenaXId": "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -149,12 +149,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a45d70f9-79f4-4247-9d96-2b42d3e30b9b" + "childCatenaXId": "urn:uuid:571cca8d-ceda-458e-a51c-69bcf53fa1ad" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -166,12 +166,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b5af1191-be7d-4a06-be65-45abab1003b8" + "childCatenaXId": "urn:uuid:f473c6ec-3920-433a-89cd-c3b914ed6963" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -183,12 +183,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:81ee63b0-0a37-42a3-bd7f-3a311cf9e067" + "childCatenaXId": "urn:uuid:719cff6f-8425-4a9a-a20f-1ddf92873d57" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -200,12 +200,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a1c33cc3-60c2-4b06-a929-2c3ef8d09dd2" + "childCatenaXId": "urn:uuid:0e90d4a6-8ccc-483b-a786-bfac2a2d6553" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -217,12 +217,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:260bafea-867b-4160-a2d2-b6f0ed52dd36" + "childCatenaXId": "urn:uuid:b2805664-6d1e-481a-b270-bc75cb67ad63" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -234,12 +234,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:000eee07-2df6-4e67-bc6a-6dd6b30d1dea" + "childCatenaXId": "urn:uuid:c1bbd0b8-b1df-40c5-b19a-714798799ffe" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -251,12 +251,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:890757b8-e562-4e0c-94f7-bd0806dd258f" + "childCatenaXId": "urn:uuid:eab9525d-79c0-4c3c-83dd-4815f2703ed1" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -268,12 +268,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2098f1c4-92af-4141-af33-36f125f2b342" + "childCatenaXId": "urn:uuid:1b96d3d5-05e7-4da7-9915-2ed834316ca4" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -285,12 +285,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:78a179e1-edb0-419a-bbea-6219015dcd92" + "childCatenaXId": "urn:uuid:aacf2b0e-5de2-4952-862e-2b47a12e59bc" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -302,12 +302,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:307651fd-71f7-42cc-a644-f82ecb10ee24" + "childCatenaXId": "urn:uuid:cb1e4dcd-31a0-47df-994b-f0f541cbaf9f" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -319,12 +319,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:7743b60c-a868-41e9-afab-ab2465734f20" + "childCatenaXId": "urn:uuid:cbb53a71-fba4-4753-868b-e91721d8f7b1" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -336,12 +336,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:719fa2fe-5462-43d0-a240-7ead01808de7" + "childCatenaXId": "urn:uuid:9663defa-684b-4e75-80d5-82d001ab217a" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -353,12 +353,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d03c22a1-0ccc-4aee-912a-d52386f76b33" + "childCatenaXId": "urn:uuid:9107e586-9bfa-4c82-b81c-6c8ae0ee36f6" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -370,12 +370,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:79426a34-3f11-422f-a5d4-c9f78637b00b" + "childCatenaXId": "urn:uuid:0bfbebba-8a1c-41a3-8199-b1075f327f7a" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -387,12 +387,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:7c4993ad-9bed-46c8-a9b4-261073a0a3b5" + "childCatenaXId": "urn:uuid:1294c992-af34-4779-b13c-5cae0fd521fb" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -404,12 +404,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:cafdcb5d-4ed8-40e0-8af4-2b986a08ca7d" + "childCatenaXId": "urn:uuid:34d50337-e11f-4f41-9a48-87cc986d5449" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -421,12 +421,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f2588c21-e82b-4049-8795-06e0a7cf63bd" + "childCatenaXId": "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -438,12 +438,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:3eea3fe0-fc9f-4ad9-b00d-24bf05e551e2" + "childCatenaXId": "urn:uuid:5ca6c6f0-3ac2-4b90-b88c-a28935646d55" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -455,12 +455,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:9fb82cbb-972b-4b04-a283-186ca45b2bd8" + "childCatenaXId": "urn:uuid:744ec0a4-575b-47b4-9c97-b5eaad60b51e" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -472,12 +472,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e4ee6157-108d-4dc5-b47b-08a317d1e2c5" + "childCatenaXId": "urn:uuid:fc7f69b3-27d8-40a8-866e-e4e79608d788" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -489,12 +489,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:4921d6d6-bb0e-488a-bfcb-43aa98f770f1" + "childCatenaXId": "urn:uuid:66488d8e-893a-4f4d-b650-e921ad5223e0" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -506,12 +506,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:84e40758-b27c-4838-a498-4d52772cbf29" + "childCatenaXId": "urn:uuid:4870af61-d8e5-4923-b8b9-e43bab6e555b" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -523,12 +523,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:61ed1b73-f75f-4001-a7d3-43b7b48627df" + "childCatenaXId": "urn:uuid:682f4e8e-2157-45ed-8833-0e51d6f4b555" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -540,12 +540,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:773a790c-3265-4a0d-a376-ba6892d1af6e" + "childCatenaXId": "urn:uuid:da6d0c77-2318-4cf0-b72a-602b758c4893" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -557,12 +557,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:fecce9a1-64a0-4bda-8ff9-1bb1abe8b3a2" + "childCatenaXId": "urn:uuid:b584ac7a-73b0-4d8b-8dff-a14dad6a8787" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -574,12 +574,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:fcfdf8a6-80ed-4345-a52d-ae440c0a2bd5" + "childCatenaXId": "urn:uuid:12236481-0285-44d8-810f-766c676a0298" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:504cc0c4-4199-43bf-83d5-7ce575cf2170", + "catenaXId": "urn:uuid:a7fc6773-b3f2-4b9e-b0ca-586cbbd51dd9", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -591,32 +591,32 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:19488393-c309-4f69-babb-ec2a2414e567" + "childCatenaXId": "urn:uuid:80dd9f05-d4e0-4b14-9436-d9a31865b2a8" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a1c33cc3-60c2-4b06-a929-2c3ef8d09dd2", + "catenaXId": "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3", "linkedItem": { "quantity": { - "quantityNumber": 1.0, + "quantityNumber": 0.2341, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" + "lexicalValue": "unit:kilogram" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6b7688db-ca94-4056-9e94-98b8f49bbf5e" + "childCatenaXId": "urn:uuid:44516a17-96a6-48ea-be5f-9c20b71f8220" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a1c33cc3-60c2-4b06-a929-2c3ef8d09dd2", + "catenaXId": "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3", "linkedItem": { "quantity": { - "quantityNumber": 0.3301, + "quantityNumber": 0.2014, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", "lexicalValue": "unit:kilogram" @@ -625,46 +625,46 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f38af026-2030-4da6-bcce-6af211400feb" + "childCatenaXId": "urn:uuid:1c9e90dc-1135-402c-8a4f-11b4e6e8ca6e" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a1c33cc3-60c2-4b06-a929-2c3ef8d09dd2", + "catenaXId": "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3", "linkedItem": { "quantity": { - "quantityNumber": 0.2001, + "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f6dc159a-c93d-4a61-a9c6-4985e6ffca31" + "childCatenaXId": "urn:uuid:6ac8d26d-332f-450b-b281-2db2e4ed161a" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:e4ee6157-108d-4dc5-b47b-08a317d1e2c5", + "catenaXId": "urn:uuid:6ac8d26d-332f-450b-b281-2db2e4ed161a", "linkedItem": { "quantity": { - "quantityNumber": 1.0, + "quantityNumber": 0.1908, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" + "lexicalValue": "unit:kilogram" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f680d61e-5c04-4dd1-9f7f-995719f20a48" + "childCatenaXId": "urn:uuid:4cf755d5-c54d-4049-bd34-ccb566bd7d08" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cafdcb5d-4ed8-40e0-8af4-2b986a08ca7d", + "catenaXId": "urn:uuid:aacf2b0e-5de2-4952-862e-2b47a12e59bc", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -676,32 +676,32 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:56f09d9a-7004-46e8-a7e1-5a4a4caecced" + "childCatenaXId": "urn:uuid:d25ba21d-55d8-4ba0-9a3e-2df4f199a08a" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cafdcb5d-4ed8-40e0-8af4-2b986a08ca7d", + "catenaXId": "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da", "linkedItem": { "quantity": { - "quantityNumber": 0.2341, + "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b5a3dc95-c4a3-482f-b5ef-89af7d6e6348" + "childCatenaXId": "urn:uuid:eabe1577-a594-409f-9da3-92dfa5b89354" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:cafdcb5d-4ed8-40e0-8af4-2b986a08ca7d", + "catenaXId": "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da", "linkedItem": { "quantity": { - "quantityNumber": 0.2014, + "quantityNumber": 0.3301, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", "lexicalValue": "unit:kilogram" @@ -710,15 +710,15 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:57ff38c0-ba9b-42e0-8950-1b1c062efe04" + "childCatenaXId": "urn:uuid:d0545b54-8839-4b13-b6c5-f19f0b7c9105" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:6b7688db-ca94-4056-9e94-98b8f49bbf5e", + "catenaXId": "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da", "linkedItem": { "quantity": { - "quantityNumber": 0.1908, + "quantityNumber": 0.2001, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", "lexicalValue": "unit:kilogram" @@ -727,12 +727,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e6165b71-d315-4282-b874-bd35331d1dde" + "childCatenaXId": "urn:uuid:04baed27-a656-4cee-be2a-d2c99fa9c574" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:56f09d9a-7004-46e8-a7e1-5a4a4caecced", + "catenaXId": "urn:uuid:eabe1577-a594-409f-9da3-92dfa5b89354", "linkedItem": { "quantity": { "quantityNumber": 0.1908, @@ -744,9 +744,9 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:107d88d1-f24c-4f73-b099-254950609e91" + "childCatenaXId": "urn:uuid:b6496465-27fc-489e-9470-855215868bb2" }, "aspectType": "AssemblyPartRelationship" } ] -} +} \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-submodels.json b/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-submodels.json index 68c869e7e5..af603a52fb 100644 --- a/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-submodels.json +++ b/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-submodels.json @@ -1,1951 +1,1751 @@ { "submodels": [ { - "identification": "urn:uuid:f5c75551-357e-425d-a319-6bb29cce0a4b", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "SR-07", - "key": "manufacturerPartId" - }, - { - "value": "OMBKSFAKRYSEOMTIB", - "key": "partInstanceId" - }, - { - "value": "OMBKSFAKRYSEOMTIB", - "key": "van" - } - ], - "manufacturingInformation": { - "date": "2014-03-30T23:12:59.000Z", - "country": "DEU" - }, - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", - "partTypeInformation": { - "manufacturerPartId": "SR-07", - "classification": "product", - "nameAtManufacturer": "Vehicle Combustion" + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:6bd19830-3f63-4915-906d-0dd26196b7a6" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:9663defa-684b-4e75-80d5-82d001ab217a" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:9107e586-9bfa-4c82-b81c-6c8ae0ee36f6" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:66488d8e-893a-4f4d-b650-e921ad5223e0" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:a7fc6773-b3f2-4b9e-b0ca-586cbbd51dd9" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:aacf2b0e-5de2-4952-862e-2b47a12e59bc" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:571cca8d-ceda-458e-a51c-69bcf53fa1ad" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:94f95beb-2d2e-4275-af82-ef601d25e7db" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:5ca6c6f0-3ac2-4b90-b88c-a28935646d55" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:d4e9558c-f75b-437d-8bd5-83fe14bdeeaf" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f473c6ec-3920-433a-89cd-c3b914ed6963" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1294c992-af34-4779-b13c-5cae0fd521fb" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:cb1e4dcd-31a0-47df-994b-f0f541cbaf9f" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:0bfbebba-8a1c-41a3-8199-b1075f327f7a" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:da6d0c77-2318-4cf0-b72a-602b758c4893" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:719cff6f-8425-4a9a-a20f-1ddf92873d57" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:744ec0a4-575b-47b4-9c97-b5eaad60b51e" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:34d50337-e11f-4f41-9a48-87cc986d5449" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:de9d233e-c371-490b-b02b-092756ccdd42" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:eab9525d-79c0-4c3c-83dd-4815f2703ed1" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:82260db6-7ac1-4b61-9b98-e193cfbfcca4" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:cbb53a71-fba4-4753-868b-e91721d8f7b1" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:0e90d4a6-8ccc-483b-a786-bfac2a2d6553" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:12236481-0285-44d8-810f-766c676a0298" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1b96d3d5-05e7-4da7-9915-2ed834316ca4" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:fc7f69b3-27d8-40a8-866e-e4e79608d788" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:4870af61-d8e5-4923-b8b9-e43bab6e555b" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:c1bbd0b8-b1df-40c5-b19a-714798799ffe" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:b2805664-6d1e-481a-b270-bc75cb67ad63" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:682f4e8e-2157-45ed-8833-0e51d6f4b555" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:b584ac7a-73b0-4d8b-8dff-a14dad6a8787" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:625d9e00-b1c2-4d98-a9a7-fea9f00d2521" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da" } - } + ] }, { - "identification": "urn:uuid:97ed9695-96b0-480d-9732-998673920155", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:cce14502-958a-42e1-8bb7-f4f41a9457d0", - "childParts": [ - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:4921d6d6-bb0e-488a-bfcb-43aa98f770f1" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2a1bd6c6-69c3-41b6-8154-596a79567017" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f2588c21-e82b-4049-8795-06e0a7cf63bd" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:719fa2fe-5462-43d0-a240-7ead01808de7" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:504cc0c4-4199-43bf-83d5-7ce575cf2170" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e4ee6157-108d-4dc5-b47b-08a317d1e2c5" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:7c4993ad-9bed-46c8-a9b4-261073a0a3b5" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:fcfdf8a6-80ed-4345-a52d-ae440c0a2bd5" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:890757b8-e562-4e0c-94f7-bd0806dd258f" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:000eee07-2df6-4e67-bc6a-6dd6b30d1dea" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d71d22bf-1fca-49a4-aa39-3b2c4563327e" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:97ddc65b-cb98-44e3-a21e-4940159dda34" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d03c22a1-0ccc-4aee-912a-d52386f76b33" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:307651fd-71f7-42cc-a644-f82ecb10ee24" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:84e40758-b27c-4838-a498-4d52772cbf29" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2bbd4409-1fd9-429d-bb7c-7297b67a4e34" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:81ee63b0-0a37-42a3-bd7f-3a311cf9e067" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e7bba1ca-c0e5-4e17-92eb-366ab7a9db92" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a45d70f9-79f4-4247-9d96-2b42d3e30b9b" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:61ed1b73-f75f-4001-a7d3-43b7b48627df" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:78a179e1-edb0-419a-bbea-6219015dcd92" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:9fb82cbb-972b-4b04-a283-186ca45b2bd8" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:72a486fa-3ca0-4dc7-8c3a-893ed56ff874" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:773a790c-3265-4a0d-a376-ba6892d1af6e" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:3eea3fe0-fc9f-4ad9-b00d-24bf05e551e2" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:79426a34-3f11-422f-a5d4-c9f78637b00b" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2098f1c4-92af-4141-af33-36f125f2b342" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:fecce9a1-64a0-4bda-8ff9-1bb1abe8b3a2" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b5af1191-be7d-4a06-be65-45abab1003b8" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0f006414-e0e8-40a4-85ed-c126322b3b61" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:7743b60c-a868-41e9-afab-ab2465734f20" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:260bafea-867b-4160-a2d2-b6f0ed52dd36" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:cafdcb5d-4ed8-40e0-8af4-2b986a08ca7d" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a1c33cc3-60c2-4b06-a929-2c3ef8d09dd2" - } - ] + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "DI-16", + "key": "manufacturerPartId" + }, + { + "value": "OMCBYLPHNDTUQYOHK", + "key": "partInstanceId" + }, + { + "value": "OMCBYLPHNDTUQYOHK", + "key": "van" + } + ], + "manufacturingInformation": { + "date": "2016-09-21T11:53:57.000Z", + "country": "DEU" + }, + "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "partTypeInformation": { + "manufacturerPartId": "DI-16", + "classification": "product", + "nameAtManufacturer": "Vehicle Combustion" } }, { - "identification": "urn:uuid:52df5f49-3604-4dc2-b72a-013b4bb04185", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "58471477-24", - "key": "manufacturerPartId" - }, - { - "value": "NO-908148776563602876724750", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:2bbd4409-1fd9-429d-bb7c-7297b67a4e34", - "partTypeInformation": { - "manufacturerPartId": "58471477-24", - "customerPartId": "58471477-24", - "classification": "component", - "nameAtManufacturer": "Exterior mirror right", - "nameAtCustomer": "Exterior mirror right" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "77795937-13", + "key": "manufacturerPartId" + }, + { + "value": "NO-228987054676435453412325", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:de9d233e-c371-490b-b02b-092756ccdd42", + "partTypeInformation": { + "manufacturerPartId": "77795937-13", + "customerPartId": "77795937-13", + "classification": "component", + "nameAtManufacturer": "Steering wheel", + "nameAtCustomer": "Steering wheel" } }, { - "identification": "urn:uuid:adfc463f-28be-48cd-85ea-1b0c263da430", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "13769860-47", - "key": "manufacturerPartId" - }, - { - "value": "NO-646893736267377485163715", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:d71d22bf-1fca-49a4-aa39-3b2c4563327e", - "partTypeInformation": { - "manufacturerPartId": "13769860-47", - "customerPartId": "13769860-47", - "classification": "component", - "nameAtManufacturer": "Fender left", - "nameAtCustomer": "Fender right" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "45863316-60", + "key": "manufacturerPartId" + }, + { + "value": "NO-383031694883957480024383", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:625d9e00-b1c2-4d98-a9a7-fea9f00d2521", + "partTypeInformation": { + "manufacturerPartId": "45863316-60", + "customerPartId": "45863316-60", + "classification": "component", + "nameAtManufacturer": "Tires", + "nameAtCustomer": "Tires" } }, { - "identification": "urn:uuid:daf3c1a3-ce92-49f5-91f8-e0f5c723e8ed", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "78141846-87", - "key": "manufacturerPartId" - }, - { - "value": "NO-386314672759223767813755", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:72a486fa-3ca0-4dc7-8c3a-893ed56ff874", - "partTypeInformation": { - "manufacturerPartId": "78141846-87", - "customerPartId": "78141846-87", - "classification": "component", - "nameAtManufacturer": "Starter motor", - "nameAtCustomer": "Starter motor" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "28673126-98", + "key": "manufacturerPartId" + }, + { + "value": "NO-769452578547908494693969", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:94f95beb-2d2e-4275-af82-ef601d25e7db", + "partTypeInformation": { + "manufacturerPartId": "28673126-98", + "customerPartId": "28673126-98", + "classification": "component", + "nameAtManufacturer": "Door r-r", + "nameAtCustomer": "Door rear-right" } }, { - "identification": "urn:uuid:e0f60357-45f7-47d8-b92c-920f4e7e4d6f", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "36643162-35", - "key": "manufacturerPartId" - }, - { - "value": "NO-167672725207122083674446", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:97ddc65b-cb98-44e3-a21e-4940159dda34", - "partTypeInformation": { - "manufacturerPartId": "36643162-35", - "customerPartId": "36643162-35", - "classification": "component", - "nameAtManufacturer": "Fender right", - "nameAtCustomer": "Fender right" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "19073706-76", + "key": "manufacturerPartId" + }, + { + "value": "NO-465118501506511726597363", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:82260db6-7ac1-4b61-9b98-e193cfbfcca4", + "partTypeInformation": { + "manufacturerPartId": "19073706-76", + "customerPartId": "19073706-76", + "classification": "component", + "nameAtManufacturer": "Indicator right", + "nameAtCustomer": "Indicator right" } }, { - "identification": "urn:uuid:863a5fdf-5883-4b00-af0f-a3502452fe2a", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "43501996-98", - "key": "manufacturerPartId" - }, - { - "value": "NO-879915865025278893925907", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:e7bba1ca-c0e5-4e17-92eb-366ab7a9db92", - "partTypeInformation": { - "manufacturerPartId": "43501996-98", - "customerPartId": "43501996-98", - "classification": "component", - "nameAtManufacturer": "Dashboard", - "nameAtCustomer": "Dashboard" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "85023955-75", + "key": "manufacturerPartId" + }, + { + "value": "NO-483981471906326819012285", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:d4e9558c-f75b-437d-8bd5-83fe14bdeeaf", + "partTypeInformation": { + "manufacturerPartId": "85023955-75", + "customerPartId": "85023955-75", + "classification": "component", + "nameAtManufacturer": "Tailgate", + "nameAtCustomer": "Tailgate" } }, { - "identification": "urn:uuid:f652c160-0761-465e-b2bc-8fff4e055030", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "00871379-44", - "key": "manufacturerPartId" - }, - { - "value": "NO-722446122435002273647930", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:0f006414-e0e8-40a4-85ed-c126322b3b61", - "partTypeInformation": { - "manufacturerPartId": "00871379-44", - "customerPartId": "00871379-44", - "classification": "component", - "nameAtManufacturer": "Chassis", - "nameAtCustomer": "Chassis" + "catenaXId": "urn:uuid:a7fc6773-b3f2-4b9e-b0ca-586cbbd51dd9", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:80dd9f05-d4e0-4b14-9436-d9a31865b2a8" } - } + ] }, { - "identification": "urn:uuid:69f30b5b-5b25-4941-8f71-df140f794eff", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "88111709-49", - "key": "manufacturerPartId" - }, - { - "value": "NO-893278288069568267061701", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:b5af1191-be7d-4a06-be65-45abab1003b8", - "partTypeInformation": { - "manufacturerPartId": "88111709-49", - "customerPartId": "88111709-49", - "classification": "component", - "nameAtManufacturer": "Axle part rear", - "nameAtCustomer": "Axle part rear" + "localIdentifiers": [ + { + "value": "BPNL00000003CSGV", + "key": "manufacturerId" + }, + { + "value": "22782277-50", + "key": "manufacturerPartId" + }, + { + "value": "NO-492358453378932046169873", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:a7fc6773-b3f2-4b9e-b0ca-586cbbd51dd9", + "partTypeInformation": { + "manufacturerPartId": "22782277-50", + "customerPartId": "22782277-50", + "classification": "component", + "nameAtManufacturer": "Door f-l", + "nameAtCustomer": "Door front-left" } }, { - "identification": "urn:uuid:98428cbb-4931-4c56-a2a8-4d9793a82a48", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "09002013-68", - "key": "manufacturerPartId" - }, - { - "value": "NO-070172261725229389714140", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:81ee63b0-0a37-42a3-bd7f-3a311cf9e067", - "partTypeInformation": { - "manufacturerPartId": "09002013-68", - "customerPartId": "09002013-68", - "classification": "component", - "nameAtManufacturer": "Trailer coupling", - "nameAtCustomer": "Tailer coupling" + "localIdentifiers": [ + { + "value": "BPNL00000000BJTL", + "key": "manufacturerId" + }, + { + "value": "95657762-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-074211028117767199853993", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:80dd9f05-d4e0-4b14-9436-d9a31865b2a8", + "partTypeInformation": { + "manufacturerPartId": "95657762-59", + "customerPartId": "95657762-59", + "classification": "component", + "nameAtManufacturer": "Door Key", + "nameAtCustomer": "Door Key" } }, { - "identification": "urn:uuid:0457d5cf-9e7f-43a4-a6a7-829e6849c557", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "94421589-82", - "key": "manufacturerPartId" - }, - { - "value": "NO-199366043992660584843192", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:890757b8-e562-4e0c-94f7-bd0806dd258f", - "partTypeInformation": { - "manufacturerPartId": "94421589-82", - "customerPartId": "94421589-82", - "classification": "component", - "nameAtManufacturer": "Engine hood", - "nameAtCustomer": "Engine hood" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "10030939-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-381494136658703739908155", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:6bd19830-3f63-4915-906d-0dd26196b7a6", + "partTypeInformation": { + "manufacturerPartId": "10030939-59", + "customerPartId": "10030939-59", + "classification": "component", + "nameAtManufacturer": "Engine", + "nameAtCustomer": "Engine" } }, { - "identification": "urn:uuid:f41725d2-3aa0-4f5d-8f87-8de2442c82c1", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "32494586-73", - "key": "manufacturerPartId" - }, - { - "value": "NO-462085552967082714371063", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:2a1bd6c6-69c3-41b6-8154-596a79567017", - "partTypeInformation": { - "manufacturerPartId": "32494586-73", - "customerPartId": "32494586-73", - "classification": "component", - "nameAtManufacturer": "Differential Gear", - "nameAtCustomer": "Differential Gear" - } - } + "diameter": 560, + "length": 843, + "width": 762, + "weight": 180, + "height": 711 }, { - "identification": "urn:uuid:2dba39d7-5d79-4c62-8cb6-ad130a5b5dcb", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "45863316-60", - "key": "manufacturerPartId" - }, - { - "value": "NO-538013715297606720098957", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:260bafea-867b-4160-a2d2-b6f0ed52dd36", - "partTypeInformation": { - "manufacturerPartId": "45863316-60", - "customerPartId": "45863316-60", - "classification": "component", - "nameAtManufacturer": "Tires", - "nameAtCustomer": "Tires" + "catenaXId": "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3", + "childParts": [ + { + "quantity": { + "quantityNumber": "0.2014", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1c9e90dc-1135-402c-8a4f-11b4e6e8ca6e" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:6ac8d26d-332f-450b-b281-2db2e4ed161a" + }, + { + "quantity": { + "quantityNumber": "0.2341", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:44516a17-96a6-48ea-be5f-9c20b71f8220" } - } + ] }, { - "identification": "urn:uuid:2d8cbb25-b183-475c-a8a7-aa62dd8a55cf", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "22768257-25", - "key": "manufacturerPartId" - }, - { - "value": "NO-240876855803097128400146", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:307651fd-71f7-42cc-a644-f82ecb10ee24", - "partTypeInformation": { - "manufacturerPartId": "22768257-25", - "customerPartId": "22768257-25", - "classification": "component", - "nameAtManufacturer": "Bumper rear", - "nameAtCustomer": "Bumper rear" + "localIdentifiers": [ + { + "value": "BPNL00000003B2OM", + "key": "manufacturerId" + }, + { + "value": "1O222E8-43", + "key": "manufacturerPartId" + }, + { + "value": "NO-454520675807492820351595", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3", + "partTypeInformation": { + "manufacturerPartId": "1O222E8-43", + "customerPartId": "1O222E8-43", + "classification": "component", + "nameAtManufacturer": "Transmission", + "nameAtCustomer": "Transmission" } }, { - "identification": "urn:uuid:49a2b951-3591-4640-81aa-ebe7eca6b030", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "77795937-13", - "key": "manufacturerPartId" - }, - { - "value": "NO-564001268648866994483869", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:a45d70f9-79f4-4247-9d96-2b42d3e30b9b", - "partTypeInformation": { - "manufacturerPartId": "77795937-13", - "customerPartId": "77795937-13", - "classification": "component", - "nameAtManufacturer": "Steering wheel", - "nameAtCustomer": "Steering wheel" - } - } + "diameter": 380, + "length": 810, + "width": 590, + "weight": 85, + "height": 610 }, { - "identification": "urn:uuid:9df8b494-80c8-47d5-bd3f-763de4f750a5", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "78744126-74", - "key": "manufacturerPartId" - }, - { - "value": "NO-324542046671255047372057", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:2098f1c4-92af-4141-af33-36f125f2b342", - "partTypeInformation": { - "manufacturerPartId": "78744126-74", - "customerPartId": "78744126-74", - "classification": "component", - "nameAtManufacturer": "Taillight front", - "nameAtCustomer": "Taillight front" - } - } + "catenaXId": "urn:uuid:44516a17-96a6-48ea-be5f-9c20b71f8220", + "childParts": [] }, { - "identification": "urn:uuid:1c0dc9f0-7bbe-4e91-bbc3-d4d677b07e99", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "85023955-75", - "key": "manufacturerPartId" - }, - { - "value": "NO-064969896800237848819039", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:000eee07-2df6-4e67-bc6a-6dd6b30d1dea", - "partTypeInformation": { - "manufacturerPartId": "85023955-75", - "customerPartId": "85023955-75", - "classification": "component", - "nameAtManufacturer": "Tailgate", - "nameAtCustomer": "Tailgate" + "catenaXId": "urn:uuid:6ac8d26d-332f-450b-b281-2db2e4ed161a", + "childParts": [ + { + "quantity": { + "quantityNumber": "0.1908", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:4cf755d5-c54d-4049-bd34-ccb566bd7d08" } - } + ] }, { - "identification": "urn:uuid:aa9c8617-70ca-4935-9792-034520e4cb53", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "19073706-76", - "key": "manufacturerPartId" - }, - { - "value": "NO-539036725320951616116252", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:78a179e1-edb0-419a-bbea-6219015dcd92", - "partTypeInformation": { - "manufacturerPartId": "19073706-76", - "customerPartId": "19073706-76", - "classification": "component", - "nameAtManufacturer": "Indicator right", - "nameAtCustomer": "Indicator right" + "localIdentifiers": [ + { + "value": "BPNL00000003B3NX", + "key": "manufacturerId" + }, + { + "value": "66755R5-14", + "key": "manufacturerPartId" + }, + { + "value": "NO-585940955748527736354913", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:6ac8d26d-332f-450b-b281-2db2e4ed161a", + "partTypeInformation": { + "manufacturerPartId": "66755R5-14", + "customerPartId": "66755R5-14", + "classification": "component", + "nameAtManufacturer": "Sensor", + "nameAtCustomer": "Sensor" } }, { - "identification": "urn:uuid:ad908218-758e-4529-9b8a-5f0350047c19", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "73849201-61", - "key": "manufacturerPartId" - }, - { - "value": "NO-083052568348899541197941", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:719fa2fe-5462-43d0-a240-7ead01808de7", - "partTypeInformation": { - "manufacturerPartId": "73849201-61", - "customerPartId": "73849201-61", - "classification": "component", - "nameAtManufacturer": "Catalysator", - "nameAtCustomer": "Catalysator" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "15635759-16", + "key": "manufacturerPartId" + }, + { + "value": "NO-313649659285446108570445", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:571cca8d-ceda-458e-a51c-69bcf53fa1ad", + "partTypeInformation": { + "manufacturerPartId": "15635759-16", + "customerPartId": "15635759-16", + "classification": "component", + "nameAtManufacturer": "Door r-l", + "nameAtCustomer": "Door rear-left" } }, { - "identification": "urn:uuid:35b99c22-8de0-4c7f-8382-2d1929ddbff5", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "61184040-23", - "key": "manufacturerPartId" - }, - { - "value": "NO-826529578552558325865643", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:79426a34-3f11-422f-a5d4-c9f78637b00b", - "partTypeInformation": { - "manufacturerPartId": "61184040-23", - "customerPartId": "61184040-23", - "classification": "component", - "nameAtManufacturer": "Taillight rear", - "nameAtCustomer": "Taillight rear" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "13769860-47", + "key": "manufacturerPartId" + }, + { + "value": "NO-992059506619147345195164", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:f473c6ec-3920-433a-89cd-c3b914ed6963", + "partTypeInformation": { + "manufacturerPartId": "13769860-47", + "customerPartId": "13769860-47", + "classification": "component", + "nameAtManufacturer": "Fender left", + "nameAtCustomer": "Fender right" } }, { - "identification": "urn:uuid:0096ca7a-233c-48a1-b7e5-ab756d66ee82", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "67034319-44", - "key": "manufacturerPartId" - }, - { - "value": "NO-093632624435445274574834", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:f2588c21-e82b-4049-8795-06e0a7cf63bd", - "partTypeInformation": { - "manufacturerPartId": "67034319-44", - "customerPartId": "67034319-44", - "classification": "component", - "nameAtManufacturer": "Turbocharger", - "nameAtCustomer": "Turbocharger" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "58471477-24", + "key": "manufacturerPartId" + }, + { + "value": "NO-256006458590897684674690", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:719cff6f-8425-4a9a-a20f-1ddf92873d57", + "partTypeInformation": { + "manufacturerPartId": "58471477-24", + "customerPartId": "58471477-24", + "classification": "component", + "nameAtManufacturer": "Exterior mirror right", + "nameAtCustomer": "Exterior mirror right" } }, { - "identification": "urn:uuid:81b5294c-a447-4431-be99-4efcf9088b09", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "65529521-37", - "key": "manufacturerPartId" - }, - { - "value": "NO-075513358163357493109718", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:84e40758-b27c-4838-a498-4d52772cbf29", - "partTypeInformation": { - "manufacturerPartId": "65529521-37", - "customerPartId": "65529521-37", - "classification": "component", - "nameAtManufacturer": "Exterior mirror left", - "nameAtCustomer": "Exterior mirror left" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "78141846-87", + "key": "manufacturerPartId" + }, + { + "value": "NO-159932335465198259357175", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:0e90d4a6-8ccc-483b-a786-bfac2a2d6553", + "partTypeInformation": { + "manufacturerPartId": "78141846-87", + "customerPartId": "78141846-87", + "classification": "component", + "nameAtManufacturer": "Starter motor", + "nameAtCustomer": "Starter motor" } }, { - "identification": "urn:uuid:b1ec78a6-d772-481a-8aa6-0cd8b44d195e", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "20125432-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-271630709164214690650633", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:61ed1b73-f75f-4001-a7d3-43b7b48627df", - "partTypeInformation": { - "manufacturerPartId": "20125432-59", - "customerPartId": "20125432-59", - "classification": "component", - "nameAtManufacturer": "Indicator left", - "nameAtCustomer": "Indicator left" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "88111709-49", + "key": "manufacturerPartId" + }, + { + "value": "NO-673420918684432228459139", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:b2805664-6d1e-481a-b270-bc75cb67ad63", + "partTypeInformation": { + "manufacturerPartId": "88111709-49", + "customerPartId": "88111709-49", + "classification": "component", + "nameAtManufacturer": "Axle part rear", + "nameAtCustomer": "Axle part rear" } }, { - "identification": "urn:uuid:08868094-b587-4b15-96c3-bd8e07f54078", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "08901347-87", - "key": "manufacturerPartId" - }, - { - "value": "NO-302718244054482918723795", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:7743b60c-a868-41e9-afab-ab2465734f20", - "partTypeInformation": { - "manufacturerPartId": "08901347-87", - "customerPartId": "08901347-87", - "classification": "component", - "nameAtManufacturer": "Rims", - "nameAtCustomer": "Rims" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "12093297-03", + "key": "manufacturerPartId" + }, + { + "value": "NO-482943843990617202683900", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:c1bbd0b8-b1df-40c5-b19a-714798799ffe", + "partTypeInformation": { + "manufacturerPartId": "12093297-03", + "customerPartId": "12093297-03", + "classification": "component", + "nameAtManufacturer": "Axle part front", + "nameAtCustomer": "Axle part front" } }, { - "identification": "urn:uuid:c4556be3-987d-46f6-9c34-d99a2841719c", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "81324139-23", - "key": "manufacturerPartId" - }, - { - "value": "NO-638111336634345368870915", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:773a790c-3265-4a0d-a376-ba6892d1af6e", - "partTypeInformation": { - "manufacturerPartId": "81324139-23", - "customerPartId": "81324139-23", - "classification": "component", - "nameAtManufacturer": "Alternator", - "nameAtCustomer": "Alternator" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "20125432-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-777927484786811719267774", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:eab9525d-79c0-4c3c-83dd-4815f2703ed1", + "partTypeInformation": { + "manufacturerPartId": "20125432-59", + "customerPartId": "20125432-59", + "classification": "component", + "nameAtManufacturer": "Indicator left", + "nameAtCustomer": "Indicator left" } }, { - "identification": "urn:uuid:6c2751d5-bdab-4919-9d22-07fe248934da", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "28673126-98", - "key": "manufacturerPartId" - }, - { - "value": "NO-200055536647191451152446", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:fcfdf8a6-80ed-4345-a52d-ae440c0a2bd5", - "partTypeInformation": { - "manufacturerPartId": "28673126-98", - "customerPartId": "28673126-98", - "classification": "component", - "nameAtManufacturer": "Door r-r", - "nameAtCustomer": "Door rear-right" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "57929013-09", + "key": "manufacturerPartId" + }, + { + "value": "NO-506968858375705670698906", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:1b96d3d5-05e7-4da7-9915-2ed834316ca4", + "partTypeInformation": { + "manufacturerPartId": "57929013-09", + "customerPartId": "57929013-09", + "classification": "component", + "nameAtManufacturer": "AC compressor", + "nameAtCustomer": "Air conditioning compressor" } }, { - "identification": "urn:uuid:a1069d9c-90ee-4dcc-ad94-a79b944b6037", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "54165444-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-802534848713482605851178", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:d03c22a1-0ccc-4aee-912a-d52386f76b33", - "partTypeInformation": { - "manufacturerPartId": "54165444-59", - "customerPartId": "54165444-59", - "classification": "component", - "nameAtManufacturer": "Bumper front", - "nameAtCustomer": "Bumper front" + "catenaXId": "urn:uuid:aacf2b0e-5de2-4952-862e-2b47a12e59bc", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:d25ba21d-55d8-4ba0-9a3e-2df4f199a08a" } - } + ] }, { - "identification": "urn:uuid:1afe5332-3b90-45e8-8c75-072dc2baa5b3", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "15635759-16", - "key": "manufacturerPartId" - }, - { - "value": "NO-963656354707307302875798", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:7c4993ad-9bed-46c8-a9b4-261073a0a3b5", - "partTypeInformation": { - "manufacturerPartId": "15635759-16", - "customerPartId": "15635759-16", - "classification": "component", - "nameAtManufacturer": "Door r-l", - "nameAtCustomer": "Door rear-left" + "localIdentifiers": [ + { + "value": "BPNL00000003CSGV", + "key": "manufacturerId" + }, + { + "value": "95657362-64", + "key": "manufacturerPartId" + }, + { + "value": "NO-269076507870504883857636", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:aacf2b0e-5de2-4952-862e-2b47a12e59bc", + "partTypeInformation": { + "manufacturerPartId": "33740332-54", + "customerPartId": "33740332-54", + "classification": "component", + "nameAtManufacturer": "Door f-r", + "nameAtCustomer": "Door front-right" } }, { - "identification": "urn:uuid:54c6cf01-3b88-414b-8033-fbc15790b7b7", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "57929013-09", - "key": "manufacturerPartId" - }, - { - "value": "NO-918989812727935150231376", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:3eea3fe0-fc9f-4ad9-b00d-24bf05e551e2", - "partTypeInformation": { - "manufacturerPartId": "57929013-09", - "customerPartId": "57929013-09", - "classification": "component", - "nameAtManufacturer": "AC compressor", - "nameAtCustomer": "Air conditioning compressor" + "localIdentifiers": [ + { + "value": "BPNL00000000BJTL", + "key": "manufacturerId" + }, + { + "value": "95657762-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-002875190805601631753761", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:d25ba21d-55d8-4ba0-9a3e-2df4f199a08a", + "partTypeInformation": { + "manufacturerPartId": "95657762-59", + "customerPartId": "95657762-59", + "classification": "component", + "nameAtManufacturer": "Door Key", + "nameAtCustomer": "Door Key" } }, { - "identification": "urn:uuid:df94baf6-ba7c-4866-bd13-8fa71b2e39e4", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "45415162-57", - "key": "manufacturerPartId" - }, - { - "value": "NO-011521004327099577969476", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:9fb82cbb-972b-4b04-a283-186ca45b2bd8", - "partTypeInformation": { - "manufacturerPartId": "45415162-57", - "customerPartId": "45415162-57", - "classification": "component", - "nameAtManufacturer": "Led headlight", - "nameAtCustomer": "Led headlight" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "54165444-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-117123994992309633101883", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:cb1e4dcd-31a0-47df-994b-f0f541cbaf9f", + "partTypeInformation": { + "manufacturerPartId": "54165444-59", + "customerPartId": "54165444-59", + "classification": "component", + "nameAtManufacturer": "Bumper front", + "nameAtCustomer": "Bumper front" } }, { - "identification": "urn:uuid:186991a2-ffe0-49d0-b41f-8c063af5de36", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "12093297-03", - "key": "manufacturerPartId" - }, - { - "value": "NO-429253287102049252374382", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:fecce9a1-64a0-4bda-8ff9-1bb1abe8b3a2", - "partTypeInformation": { - "manufacturerPartId": "12093297-03", - "customerPartId": "12093297-03", - "classification": "component", - "nameAtManufacturer": "Axle part front", - "nameAtCustomer": "Axle part front" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "45415162-57", + "key": "manufacturerPartId" + }, + { + "value": "NO-178373350581495890032030", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:cbb53a71-fba4-4753-868b-e91721d8f7b1", + "partTypeInformation": { + "manufacturerPartId": "45415162-57", + "customerPartId": "45415162-57", + "classification": "component", + "nameAtManufacturer": "Led headlight", + "nameAtCustomer": "Led headlight" } }, { - "identification": "urn:uuid:723c9179-c9a7-4488-990e-4b1343e48e22", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003CSGV", - "key": "manufacturerId" - }, - { - "value": "22782277-50", - "key": "manufacturerPartId" - }, - { - "value": "NO-243840928872492356056649", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:504cc0c4-4199-43bf-83d5-7ce575cf2170", - "partTypeInformation": { - "manufacturerPartId": "22782277-50", - "customerPartId": "22782277-50", - "classification": "component", - "nameAtManufacturer": "Door f-l", - "nameAtCustomer": "Door front-left" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "32494586-73", + "key": "manufacturerPartId" + }, + { + "value": "NO-158280180102316527774467", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:9663defa-684b-4e75-80d5-82d001ab217a", + "partTypeInformation": { + "manufacturerPartId": "32494586-73", + "customerPartId": "32494586-73", + "classification": "component", + "nameAtManufacturer": "Differential Gear", + "nameAtCustomer": "Differential Gear" } }, { - "identification": "urn:uuid:8859b71e-5723-49b9-8157-d797e4b9588d", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:504cc0c4-4199-43bf-83d5-7ce575cf2170", - "childParts": [ - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:19488393-c309-4f69-babb-ec2a2414e567" - } - ] + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "67034319-44", + "key": "manufacturerPartId" + }, + { + "value": "NO-572960754949710555167656", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:9107e586-9bfa-4c82-b81c-6c8ae0ee36f6", + "partTypeInformation": { + "manufacturerPartId": "67034319-44", + "customerPartId": "67034319-44", + "classification": "component", + "nameAtManufacturer": "Turbocharger", + "nameAtCustomer": "Turbocharger" } }, { - "identification": "urn:uuid:d6cbb08c-2106-48fb-986f-9ed32942e250", - "aspectType": "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension", - "payload": { - "diameter": "560", - "length": "843", - "width": "762", - "weight": "180", - "height": "711" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "22768257-25", + "key": "manufacturerPartId" + }, + { + "value": "NO-154372580381393251774908", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:0bfbebba-8a1c-41a3-8199-b1075f327f7a", + "partTypeInformation": { + "manufacturerPartId": "22768257-25", + "customerPartId": "22768257-25", + "classification": "component", + "nameAtManufacturer": "Bumper rear", + "nameAtCustomer": "Bumper rear" } }, { - "identification": "urn:uuid:871c3018-cc76-4dd7-9686-baa00f3531f9", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AVTH", - "key": "manufacturerId" - }, - { - "value": "10030939-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-774702498878060917369279", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:4921d6d6-bb0e-488a-bfcb-43aa98f770f1", - "partTypeInformation": { - "manufacturerPartId": "10030939-59", - "customerPartId": "10030939-59", - "classification": "component", - "nameAtManufacturer": "Engine", - "nameAtCustomer": "Engine" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "36643162-35", + "key": "manufacturerPartId" + }, + { + "value": "NO-414351818865518400825673", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:1294c992-af34-4779-b13c-5cae0fd521fb", + "partTypeInformation": { + "manufacturerPartId": "36643162-35", + "customerPartId": "36643162-35", + "classification": "component", + "nameAtManufacturer": "Fender right", + "nameAtCustomer": "Fender right" } }, { - "identification": "urn:uuid:228a4570-9306-46af-83eb-dfebd152ad5b", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B5MJ", - "key": "manufacturerId" - }, - { - "value": "22687V8-83", - "key": "manufacturerPartId" - }, - { - "value": "NO-686376458181124273671236", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:a1c33cc3-60c2-4b06-a929-2c3ef8d09dd2", - "partTypeInformation": { - "manufacturerPartId": "22687V8-83", - "customerPartId": "22687V8-83", - "classification": "component", - "nameAtManufacturer": "ECU", - "nameAtCustomer": "ECU" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "43501996-98", + "key": "manufacturerPartId" + }, + { + "value": "NO-793594087536635898069838", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:34d50337-e11f-4f41-9a48-87cc986d5449", + "partTypeInformation": { + "manufacturerPartId": "43501996-98", + "customerPartId": "43501996-98", + "classification": "component", + "nameAtManufacturer": "Dashboard", + "nameAtCustomer": "Dashboard" } }, { - "identification": "urn:uuid:6ec4edf2-98e4-4a93-a002-7f16237067b9", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:a1c33cc3-60c2-4b06-a929-2c3ef8d09dd2", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.3301", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f38af026-2030-4da6-bcce-6af211400feb" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6b7688db-ca94-4056-9e94-98b8f49bbf5e" - }, - { - "quantity": { - "quantityNumber": "0.2001", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f6dc159a-c93d-4a61-a9c6-4985e6ffca31" - } - ] - } + "catenaXId": "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da", + "childParts": [ + { + "quantity": { + "quantityNumber": "0.3301", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:d0545b54-8839-4b13-b6c5-f19f0b7c9105" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:eabe1577-a594-409f-9da3-92dfa5b89354" + }, + { + "quantity": { + "quantityNumber": "0.2001", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:04baed27-a656-4cee-be2a-d2c99fa9c574" + } + ] }, { - "identification": "urn:uuid:cb76b2ac-0ad8-4677-973a-a4b28d0631bc", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000000BJTL", - "key": "manufacturerId" - }, - { - "value": "95657762-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-889156440760940480818067", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:19488393-c309-4f69-babb-ec2a2414e567", - "partTypeInformation": { - "manufacturerPartId": "95657762-59", - "customerPartId": "95657762-59", - "classification": "component", - "nameAtManufacturer": "Door Key", - "nameAtCustomer": "Door Key" + "localIdentifiers": [ + { + "value": "BPNL00000003B5MJ", + "key": "manufacturerId" + }, + { + "value": "45869M7-69", + "key": "manufacturerPartId" + }, + { + "value": "NO-534035086445797049897887", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da", + "partTypeInformation": { + "manufacturerPartId": "45869M7-69", + "customerPartId": "45869M7-69", + "classification": "component", + "nameAtManufacturer": "ECU", + "nameAtCustomer": "ECU" } }, { - "identification": "urn:uuid:97401abe-2b7a-4180-840e-ae273214a705", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "52344G6-17", - "key": "manufacturerPartId" - }, - { - "value": "NO-988449408817847876659669", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:f6dc159a-c93d-4a61-a9c6-4985e6ffca31", - "partTypeInformation": { - "manufacturerPartId": "52344G6-17", - "customerPartId": "52344G6-17", - "classification": "component", - "nameAtManufacturer": "Engineering Plastics", - "nameAtCustomer": "Engineering Plastics" + "catenaXId": "urn:uuid:eabe1577-a594-409f-9da3-92dfa5b89354", + "childParts": [ + { + "quantity": { + "quantityNumber": "0.1908", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:b6496465-27fc-489e-9470-855215868bb2" } - } + ] }, { - "identification": "urn:uuid:a7686344-8d0f-48a5-8f1e-05cd035e5ce5", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003CSGV", - "key": "manufacturerId" - }, - { - "value": "95657362-64", - "key": "manufacturerPartId" - }, - { - "value": "NO-904523309637402603975870", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:e4ee6157-108d-4dc5-b47b-08a317d1e2c5", - "partTypeInformation": { - "manufacturerPartId": "33740332-54", - "customerPartId": "33740332-54", - "classification": "component", - "nameAtManufacturer": "Door f-r", - "nameAtCustomer": "Door front-right" + "localIdentifiers": [ + { + "value": "BPNL00000003B3NX", + "key": "manufacturerId" + }, + { + "value": "45862S2-48", + "key": "manufacturerPartId" + }, + { + "value": "NO-150179965154423831568535", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:eabe1577-a594-409f-9da3-92dfa5b89354", + "partTypeInformation": { + "manufacturerPartId": "45862S2-48", + "customerPartId": "45862S2-48", + "classification": "component", + "nameAtManufacturer": "Sensor", + "nameAtCustomer": "Sensor" } }, { - "identification": "urn:uuid:e78158c7-0992-4a07-9d38-efc9888a82ed", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:e4ee6157-108d-4dc5-b47b-08a317d1e2c5", - "childParts": [ - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f680d61e-5c04-4dd1-9f7f-995719f20a48" - } - ] + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "manufacturerId" + }, + { + "value": "92115H1-78", + "key": "manufacturerPartId" + }, + { + "value": "NO-179789149406444356724807", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:04baed27-a656-4cee-be2a-d2c99fa9c574", + "partTypeInformation": { + "manufacturerPartId": "92115H1-78", + "customerPartId": "92115H1-78", + "classification": "component", + "nameAtManufacturer": "Engineering Plastics", + "nameAtCustomer": "Engineering Plastics" } }, { - "identification": "urn:uuid:cd50d9ad-8b2c-45b4-ae10-119fbb5cfa67", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:cafdcb5d-4ed8-40e0-8af4-2b986a08ca7d", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.2014", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:57ff38c0-ba9b-42e0-8950-1b1c062efe04" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:56f09d9a-7004-46e8-a7e1-5a4a4caecced" - }, - { - "quantity": { - "quantityNumber": "0.2341", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b5a3dc95-c4a3-482f-b5ef-89af7d6e6348" - } - ] + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "94421589-82", + "key": "manufacturerPartId" + }, + { + "value": "NO-833143677077218520998127", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:5ca6c6f0-3ac2-4b90-b88c-a28935646d55", + "partTypeInformation": { + "manufacturerPartId": "94421589-82", + "customerPartId": "94421589-82", + "classification": "component", + "nameAtManufacturer": "Engine hood", + "nameAtCustomer": "Engine hood" } }, { - "identification": "urn:uuid:b655ee04-a45e-4d83-85fd-b6db41054365", - "aspectType": "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension", - "payload": { - "diameter": "380", - "length": "810", - "width": "590", - "weight": "85", - "height": "610" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "09002013-68", + "key": "manufacturerPartId" + }, + { + "value": "NO-502228708594450719353786", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:744ec0a4-575b-47b4-9c97-b5eaad60b51e", + "partTypeInformation": { + "manufacturerPartId": "09002013-68", + "customerPartId": "09002013-68", + "classification": "component", + "nameAtManufacturer": "Trailer coupling", + "nameAtCustomer": "Tailer coupling" } }, { - "identification": "urn:uuid:3f566e36-ba6a-44ed-9a3a-f6da96dd8652", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B2OM", - "key": "manufacturerId" - }, - { - "value": "1O222E8-43", - "key": "manufacturerPartId" - }, - { - "value": "NO-952083473031443415352403", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:cafdcb5d-4ed8-40e0-8af4-2b986a08ca7d", - "partTypeInformation": { - "manufacturerPartId": "1O222E8-43", - "customerPartId": "1O222E8-43", - "classification": "component", - "nameAtManufacturer": "Transmission", - "nameAtCustomer": "Transmission" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "61184040-23", + "key": "manufacturerPartId" + }, + { + "value": "NO-561937303475455770405543", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:fc7f69b3-27d8-40a8-866e-e4e79608d788", + "partTypeInformation": { + "manufacturerPartId": "61184040-23", + "customerPartId": "61184040-23", + "classification": "component", + "nameAtManufacturer": "Taillight rear", + "nameAtCustomer": "Taillight rear" } }, { - "identification": "urn:uuid:3c4443b5-b2be-4a89-8451-89104bd76028", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000000BJTL", - "key": "manufacturerId" - }, - { - "value": "95657762-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-447398973469390545470164", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:f680d61e-5c04-4dd1-9f7f-995719f20a48", - "partTypeInformation": { - "manufacturerPartId": "95657762-59", - "customerPartId": "95657762-59", - "classification": "component", - "nameAtManufacturer": "Door Key", - "nameAtCustomer": "Door Key" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "73849201-61", + "key": "manufacturerPartId" + }, + { + "value": "NO-042618127666918570970235", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:66488d8e-893a-4f4d-b650-e921ad5223e0", + "partTypeInformation": { + "manufacturerPartId": "73849201-61", + "customerPartId": "73849201-61", + "classification": "component", + "nameAtManufacturer": "Catalysator", + "nameAtCustomer": "Catalysator" } }, { - "identification": "urn:uuid:b109b9fc-48e9-4436-b9e3-8e8297e3dcb6", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:b5a3dc95-c4a3-482f-b5ef-89af7d6e6348", - "childParts": [] + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "78744126-74", + "key": "manufacturerPartId" + }, + { + "value": "NO-845276168850633063410003", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:4870af61-d8e5-4923-b8b9-e43bab6e555b", + "partTypeInformation": { + "manufacturerPartId": "78744126-74", + "customerPartId": "78744126-74", + "classification": "component", + "nameAtManufacturer": "Taillight front", + "nameAtCustomer": "Taillight front" } }, { - "identification": "urn:uuid:12914990-8662-4994-b1bd-9df34a7a77f3", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B3NX", - "key": "manufacturerId" - }, - { - "value": "60410Y4-22", - "key": "manufacturerPartId" - }, - { - "value": "NO-962799430095473385519860", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:6b7688db-ca94-4056-9e94-98b8f49bbf5e", - "partTypeInformation": { - "manufacturerPartId": "60410Y4-22", - "customerPartId": "60410Y4-22", - "classification": "component", - "nameAtManufacturer": "Sensor", - "nameAtCustomer": "Sensor" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "00871379-44", + "key": "manufacturerPartId" + }, + { + "value": "NO-933687301502317538061233", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:682f4e8e-2157-45ed-8833-0e51d6f4b555", + "partTypeInformation": { + "manufacturerPartId": "00871379-44", + "customerPartId": "00871379-44", + "classification": "component", + "nameAtManufacturer": "Chassis", + "nameAtCustomer": "Chassis" } }, { - "identification": "urn:uuid:6887f302-53c8-443e-a77a-dca078266ac4", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:6b7688db-ca94-4056-9e94-98b8f49bbf5e", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.1908", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e6165b71-d315-4282-b874-bd35331d1dde" - } - ] + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "65529521-37", + "key": "manufacturerPartId" + }, + { + "value": "NO-040964449149119380741575", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:da6d0c77-2318-4cf0-b72a-602b758c4893", + "partTypeInformation": { + "manufacturerPartId": "65529521-37", + "customerPartId": "65529521-37", + "classification": "component", + "nameAtManufacturer": "Exterior mirror left", + "nameAtCustomer": "Exterior mirror left" } }, { - "identification": "urn:uuid:d8ca82d5-b10d-4ec9-8321-7f9f475ad730", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:56f09d9a-7004-46e8-a7e1-5a4a4caecced", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.1908", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:107d88d1-f24c-4f73-b099-254950609e91" - } - ] + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "08901347-87", + "key": "manufacturerPartId" + }, + { + "value": "NO-196930078703628145562555", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:b584ac7a-73b0-4d8b-8dff-a14dad6a8787", + "partTypeInformation": { + "manufacturerPartId": "08901347-87", + "customerPartId": "08901347-87", + "classification": "component", + "nameAtManufacturer": "Rims", + "nameAtCustomer": "Rims" } }, { - "identification": "urn:uuid:95511b93-ce70-41ca-b8cd-4930fae42229", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B3NX", - "key": "manufacturerId" - }, - { - "value": "73940B2-37", - "key": "manufacturerPartId" - }, - { - "value": "NO-030296983042821237477955", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:56f09d9a-7004-46e8-a7e1-5a4a4caecced", - "partTypeInformation": { - "manufacturerPartId": "73940B2-37", - "customerPartId": "73940B2-37", - "classification": "component", - "nameAtManufacturer": "Sensor", - "nameAtCustomer": "Sensor" + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "81324139-23", + "key": "manufacturerPartId" + }, + { + "value": "NO-447510894747375170043335", + "key": "partInstanceId" } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:12236481-0285-44d8-810f-766c676a0298", + "partTypeInformation": { + "manufacturerPartId": "81324139-23", + "customerPartId": "81324139-23", + "classification": "component", + "nameAtManufacturer": "Alternator", + "nameAtCustomer": "Alternator" } } ] -} +} \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-relationships.json b/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-relationships.json index 701169cc1c..b59a842a53 100644 --- a/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-relationships.json +++ b/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-relationships.json @@ -1,7 +1,7 @@ { "relationships": [ { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -13,12 +13,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6cd45b1b-d58a-4cb6-af22-a8a06052492a" + "childCatenaXId": "urn:uuid:f39b5055-fdc1-463d-8621-9d0e04feed92" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -30,12 +30,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:90581d63-af84-4284-8c66-4cbd07d9c680" + "childCatenaXId": "urn:uuid:0d18c568-3e2c-468a-b3b6-005b0bbb0b4f" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -47,12 +47,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:144225c7-1101-49a9-88c0-c7d04547cf7f" + "childCatenaXId": "urn:uuid:7ad788d4-fb9d-47e7-984e-bdef6d9b4fcc" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -64,12 +64,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ac326bc7-3ecd-4f09-ad9b-8384b5be8ebb" + "childCatenaXId": "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -81,12 +81,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:9d0987b4-539f-4b29-b07b-dcd841befd2b" + "childCatenaXId": "urn:uuid:c98dc077-f0fe-423d-8d74-48ef630232e7" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -98,12 +98,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:bb308242-ee6f-4339-82a9-64c40e7f8913" + "childCatenaXId": "urn:uuid:cf26332b-250a-4e75-a971-e01970e8e04e" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -115,12 +115,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2c398681-7ab5-4812-8c57-521d0b0af07f" + "childCatenaXId": "urn:uuid:14d1edce-921f-48e1-a827-2bbf90146d09" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -132,12 +132,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:52ceb54d-3b15-41d2-9b0e-f05d00767dea" + "childCatenaXId": "urn:uuid:0df8a9d4-1410-4c42-8824-ce45ad5dcad6" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -149,12 +149,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6fe17840-60fb-45e8-87d0-15b9b2c4ba17" + "childCatenaXId": "urn:uuid:35c78eca-db53-442c-9e01-467fc22c9434" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -166,12 +166,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:095a5cd5-0295-442e-8540-dbc839498774" + "childCatenaXId": "urn:uuid:d2f93c23-6fb6-4585-b3cb-c0c91269e4fd" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -183,12 +183,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ab096d16-e53d-4216-8b5f-be57f83a278a" + "childCatenaXId": "urn:uuid:24d2e568-e161-4eb6-b599-9e1dee3cd333" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -200,12 +200,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:adf502d3-0cb4-40ba-b90f-59807ca8f2f3" + "childCatenaXId": "urn:uuid:6e1fd2a3-5350-4492-9ac2-163eb62094e3" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -217,12 +217,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0eefc461-f341-4f71-9072-7291356a1c6d" + "childCatenaXId": "urn:uuid:691ec9f3-22fe-49f8-97af-697bcdb903a8" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -234,12 +234,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:820db5a1-18ab-4896-9a77-33eff163dd8f" + "childCatenaXId": "urn:uuid:879f66ad-a5c5-48d4-bda3-18c192423a63" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -251,12 +251,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f25037bd-1525-41af-97ca-ae51581075a4" + "childCatenaXId": "urn:uuid:2bfe82e9-565b-4d55-80a8-4b6a61d33f20" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -268,12 +268,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:babced29-f4bc-4dbf-9396-f0bb3bd37965" + "childCatenaXId": "urn:uuid:e97af751-4743-4884-8544-d29e26313c43" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -285,12 +285,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:bdc6a49d-6d3c-444e-85ff-2262e4650b35" + "childCatenaXId": "urn:uuid:2bafe7e7-e1c4-46f1-8da4-133dc4b92deb" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -302,12 +302,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:abdeec09-79cf-4c4e-9a0e-687496fd0944" + "childCatenaXId": "urn:uuid:81a65eb2-be1d-4bb4-ab39-9f859b282bc5" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -319,12 +319,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:03bd9690-8127-4275-bdfb-3d9d7b0b3ecc" + "childCatenaXId": "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -336,12 +336,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:5cd50f24-1885-4f3e-81a1-a2051f69382a" + "childCatenaXId": "urn:uuid:a79aa73d-0d8c-4d84-9607-f21f039c8d84" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -353,12 +353,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:103a27de-f422-49b4-bc10-e1a157230fdd" + "childCatenaXId": "urn:uuid:b274c885-0a36-4d74-ad8a-dbc2fb951a8c" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -370,12 +370,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:af727506-b369-469b-829e-0d0b10db2f49" + "childCatenaXId": "urn:uuid:7f7d23b1-d951-4297-8b26-dcab953da0c1" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -387,12 +387,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:1a044db4-589c-4bd0-bfdd-fb0a4938fab3" + "childCatenaXId": "urn:uuid:d2d2b3b9-818f-4dc0-b77b-8c851d0c0af2" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -404,12 +404,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:adb2b086-8edf-4ae6-bb3f-7b4338e136a5" + "childCatenaXId": "urn:uuid:a609b239-d015-4f37-a8eb-5a1956756ab2" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -421,12 +421,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:40fbf943-3965-4574-8435-5aec0752b777" + "childCatenaXId": "urn:uuid:26d7bebc-263b-4874-8222-971a2720a355" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -438,12 +438,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2591039c-e81c-4347-8a70-c4a2eba0bcd9" + "childCatenaXId": "urn:uuid:698fe434-5dc2-4c6c-80ff-d5a40223f52f" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -455,12 +455,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:43dd6a52-24c3-4ba1-8a7f-d80ce0b3dc79" + "childCatenaXId": "urn:uuid:2aa238f2-bcb7-4037-bb65-824610f5b23a" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -472,12 +472,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:02466410-d73a-43a2-ae4a-0cc26197244d" + "childCatenaXId": "urn:uuid:f4db9a02-3181-4f2d-903f-ba5cbc5a9b82" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -489,12 +489,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:be5fc459-1105-4e56-b8b5-e656a7c471f1" + "childCatenaXId": "urn:uuid:97f9e4ef-9c5d-4038-9ea6-1102dfc70e01" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -506,12 +506,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f8dd4a33-b5dc-4603-bb22-d9209a466ece" + "childCatenaXId": "urn:uuid:4b6a8d0e-d6cf-492a-bbdd-20956baaa6e9" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -523,12 +523,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:5be230e2-7050-4d1e-a2b6-37a32111b374" + "childCatenaXId": "urn:uuid:1e5a8888-5e03-4231-abfa-00de3be05da1" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -540,12 +540,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2cfaf921-1095-4f6c-b0bc-ea34f7e81cb2" + "childCatenaXId": "urn:uuid:784af922-1460-49b2-b4dd-d14f72fb3a7a" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -557,12 +557,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:78a6c924-083f-4858-832d-774a1207d232" + "childCatenaXId": "urn:uuid:a06a4c66-9f8e-43f4-84c1-d5b35c8c53b0" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -574,46 +574,46 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:aa6e48b8-4e0d-4eeb-8dc0-ecd3e8a1b1fb" + "childCatenaXId": "urn:uuid:9bec264e-0180-470d-be25-5976ca4eaf5c" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:0eefc461-f341-4f71-9072-7291356a1c6d", + "catenaXId": "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7", "linkedItem": { "quantity": { - "quantityNumber": 1.0, + "quantityNumber": 0.2014, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" + "lexicalValue": "unit:kilogram" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:08a861a1-28f5-450c-b275-e5863cb57df5" + "childCatenaXId": "urn:uuid:458974fe-e4bf-4221-b108-b727f6da2466" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:aa6e48b8-4e0d-4eeb-8dc0-ecd3e8a1b1fb", + "catenaXId": "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7", "linkedItem": { "quantity": { - "quantityNumber": 1.0, + "quantityNumber": 0.2341, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" + "lexicalValue": "unit:kilogram" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ef0a4ba8-daa7-474d-be2d-c6755bba3584" + "childCatenaXId": "urn:uuid:df86b6e7-d3e2-46e7-8250-1e7be432a238" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:5cd50f24-1885-4f3e-81a1-a2051f69382a", + "catenaXId": "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -625,15 +625,15 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a742d285-d9ef-4644-a52c-9424347257d5" + "childCatenaXId": "urn:uuid:bb17dcf0-e1ec-4608-bc6c-043c93a66e8c" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:5cd50f24-1885-4f3e-81a1-a2051f69382a", + "catenaXId": "urn:uuid:bb17dcf0-e1ec-4608-bc6c-043c93a66e8c", "linkedItem": { "quantity": { - "quantityNumber": 0.2001, + "quantityNumber": 0.1908, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", "lexicalValue": "unit:kilogram" @@ -642,49 +642,49 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d1d13611-26a5-498b-bcfc-1b62a4ed1176" + "childCatenaXId": "urn:uuid:fab8e14b-6d39-4efa-aa65-c6cd09d3af9f" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:5cd50f24-1885-4f3e-81a1-a2051f69382a", + "catenaXId": "urn:uuid:6e1fd2a3-5350-4492-9ac2-163eb62094e3", "linkedItem": { "quantity": { - "quantityNumber": 0.3301, + "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:bf82a05c-f170-4f37-9e75-79e84818fb41" + "childCatenaXId": "urn:uuid:9e3a7831-c396-48df-acc0-482d6930e3b0" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:03bd9690-8127-4275-bdfb-3d9d7b0b3ecc", + "catenaXId": "urn:uuid:81a65eb2-be1d-4bb4-ab39-9f859b282bc5", "linkedItem": { "quantity": { - "quantityNumber": 0.2014, + "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2db6b2b0-dcd5-4783-ac5d-ca58009f93e4" + "childCatenaXId": "urn:uuid:5d95b5a1-bd5a-4703-bd15-ce9e893a8f3c" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:03bd9690-8127-4275-bdfb-3d9d7b0b3ecc", + "catenaXId": "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743", "linkedItem": { "quantity": { - "quantityNumber": 0.2341, + "quantityNumber": 0.2001, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", "lexicalValue": "unit:kilogram" @@ -693,12 +693,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0ec2b3a8-e2cb-4302-8bdb-2807deed0ecf" + "childCatenaXId": "urn:uuid:3e22f4f9-b2e3-4e8a-9c8f-f2f7ddaa43a2" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:03bd9690-8127-4275-bdfb-3d9d7b0b3ecc", + "catenaXId": "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -710,15 +710,15 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:3b417f12-fc54-4c55-a337-3f174e5b8886" + "childCatenaXId": "urn:uuid:73173bf5-08df-4898-9d6d-8899015c161e" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:a742d285-d9ef-4644-a52c-9424347257d5", + "catenaXId": "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743", "linkedItem": { "quantity": { - "quantityNumber": 0.1908, + "quantityNumber": 0.3301, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", "lexicalValue": "unit:kilogram" @@ -727,12 +727,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:84c8573c-2c22-410b-a2db-ee0064847abd" + "childCatenaXId": "urn:uuid:3db730be-9de5-4db5-a58d-684de36484e7" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:3b417f12-fc54-4c55-a337-3f174e5b8886", + "catenaXId": "urn:uuid:73173bf5-08df-4898-9d6d-8899015c161e", "linkedItem": { "quantity": { "quantityNumber": 0.1908, @@ -744,9 +744,9 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:3895104d-89f8-4caf-aaa8-b6947c6ef5c6" + "childCatenaXId": "urn:uuid:07e0997f-4212-4456-8f27-164b30fc8355" }, "aspectType": "AssemblyPartRelationship" } ] -} +} \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-submodels.json b/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-submodels.json index 6d8e5f6836..1a38daddc1 100644 --- a/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-submodels.json +++ b/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-submodels.json @@ -1,2646 +1,1591 @@ { - "submodels": [ - { - "identification": "urn:uuid:15950557-16bf-4cce-85c9-690822321d1d", - "aspectType": "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction", - "payload": { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", - "dismantlerProperties": { - "expiryDate": "2022-07-11T08:38:46.743Z", - "dismantlerAuditorContact": { - "phone": "+49458404363", - "fax": "+497740070" - }, - "dismantlerContact": { - "phone": "+492795608", - "fax": "+49476895" - }, - "dismantlerAuditorAddress": { - "zip": "68161", - "country": "DEU", - "street": "Speyerer Straße", - "houseNumber": "45", - "name": "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", - "location": "Mannheim" - }, - "receiverAuditorAdress": { - "zip": "68161", - "country": "DEU", - "street": "Berliner Straße", - "houseNumber": "42", - "name": "VLhpfQGTMDYpsBZxvfBoeygjb", - "location": "Mannheim" - }, - "dismantlerAdress": { - "zip": "68165", - "country": "DEU", - "street": "Schubertstraße", - "houseNumber": "11", - "name": "JxkyvRnL", - "location": "Mannheim" - }, - "issueDate": "2022-07-11T08:38:46.743Z", - "isVehicleWithdrawnFromService": false, - "governmentAdress": { - "zip": "10719", - "country": "DEU", - "street": "Pariser Straße", - "houseNumber": "45", - "name": "RYtGKbgicZaHCBRQDSx", - "location": "Berlin" - } - }, - "serialNumber": "DIS1087432", - "companyNumber": "S30A00265", - "vehicleProperties": { - "licenseAbbreviation": "MA", - "isVehicleInformationComplete": false, - "licensePlate": "MA-UI123", - "identification": "WBAAY711X0KC28153", - "emptyWeight": 1.79, - "model": "Model A", - "brand": "OME", - "class": "01", - "firstRegistration": "19.12.2014" - }, - "returnPointProperties": { - "expiryDate": "2022-07-11T08:38:46.741Z", - "receiverAuditorContact": { - "phone": "+49004417570", - "fax": "+495516625649" - }, - "receiverContact": { - "phone": "+4912263422", - "fax": "+49288164270" - }, - "receiverAuditorAdress": { - "zip": "68161", - "country": "DEU", - "street": "Speyerer Straße", - "houseNumber": "45", - "name": "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", - "location": "Mannheim" - }, - "issueDate": "2022-07-11T08:38:46.741Z", - "isVehicleWithdrawnFromService": true - }, - "vehicleOwnerProperties": { - "isVehicleOwnerInformationComplete": true, - "vehicleOwnerAddress": { - "zip": "68163", - "country": "DEU", - "street": "Rheinvillen Straße", - "houseNumber": "7", - "name": "eOMtThyhVNLWUZNRcBaQKxI", - "location": "Mannheim" - }, - "citizenship": "DEU" - }, - "dismantlingDate": "2022-07-11T08:38:46.739Z" - } - }, - { - "identification": "urn:uuid:782f00ad-44ce-43d2-bcab-411427fbd7b2", - "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload": { - "component": [ - { - "materialName": "Iron", - "recycledContent": 0, - "materialClass": "1.1", - "quantity": { - "materialValue": 327.6, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "IR334" - }, - { - "materialName": "Polyethylen", - "recycledContent": 0, - "materialClass": "5.5.1", - "quantity": { - "materialValue": 163.8, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "PE221" - }, - { - "materialName": "Polyamid6", - "recycledContent": 0, - "materialClass": "5.5.1", - "quantity": { - "materialValue": 40.95, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "POL6" - }, - { - "materialName": "Aluminium", - "recycledContent": 0, - "materialClass": "2.1", - "quantity": { - "materialValue": 286.65, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "ALU331" - }, - { - "materialName": "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", - "recycledContent": 0, - "materialClass": "0.7", - "quantity": { - "materialValue": 109.2, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "W123" - }, - { - "materialName": "Glue", - "recycledContent": 0, - "materialClass": "6.2", - "quantity": { - "materialValue": 54.6, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "GL338" - }, - { - "materialName": "Carbon Steel", - "recycledContent": 0, - "materialClass": "1.1.2", - "quantity": { - "materialValue": 382.2, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "CS2" - }, - { - "materialName": "Cooper", - "recycledContent": 0, - "materialClass": "3.1", - "quantity": { - "materialValue": 250.2, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "CO7" - }, - { - "materialName": "Rubber", - "recycledContent": 0, - "materialClass": "5.3", - "quantity": { - "materialValue": 7.8, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "R22" - }, - { - "materialName": "Textiles", - "recycledContent": 0, - "materialClass": "5.5.2", - "quantity": { - "materialValue": 5.12, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "TEX1" - } - ] - } - }, - { - "identification": "urn:uuid:4cf079bd-a20c-4a2e-9132-bfd928cd11cd", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", - "childParts": [ - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2591039c-e81c-4347-8a70-c4a2eba0bcd9" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:144225c7-1101-49a9-88c0-c7d04547cf7f" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:af727506-b369-469b-829e-0d0b10db2f49" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:78a6c924-083f-4858-832d-774a1207d232" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0eefc461-f341-4f71-9072-7291356a1c6d" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:aa6e48b8-4e0d-4eeb-8dc0-ecd3e8a1b1fb" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:820db5a1-18ab-4896-9a77-33eff163dd8f" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:bb308242-ee6f-4339-82a9-64c40e7f8913" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6cd45b1b-d58a-4cb6-af22-a8a06052492a" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:adf502d3-0cb4-40ba-b90f-59807ca8f2f3" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:adb2b086-8edf-4ae6-bb3f-7b4338e136a5" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:1a044db4-589c-4bd0-bfdd-fb0a4938fab3" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:90581d63-af84-4284-8c66-4cbd07d9c680" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:43dd6a52-24c3-4ba1-8a7f-d80ce0b3dc79" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:be5fc459-1105-4e56-b8b5-e656a7c471f1" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:5be230e2-7050-4d1e-a2b6-37a32111b374" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6fe17840-60fb-45e8-87d0-15b9b2c4ba17" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:095a5cd5-0295-442e-8540-dbc839498774" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f25037bd-1525-41af-97ca-ae51581075a4" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ac326bc7-3ecd-4f09-ad9b-8384b5be8ebb" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2cfaf921-1095-4f6c-b0bc-ea34f7e81cb2" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:103a27de-f422-49b4-bc10-e1a157230fdd" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:bdc6a49d-6d3c-444e-85ff-2262e4650b35" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ab096d16-e53d-4216-8b5f-be57f83a278a" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2c398681-7ab5-4812-8c57-521d0b0af07f" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:abdeec09-79cf-4c4e-9a0e-687496fd0944" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:9d0987b4-539f-4b29-b07b-dcd841befd2b" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:02466410-d73a-43a2-ae4a-0cc26197244d" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:40fbf943-3965-4574-8435-5aec0752b777" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:52ceb54d-3b15-41d2-9b0e-f05d00767dea" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:babced29-f4bc-4dbf-9396-f0bb3bd37965" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f8dd4a33-b5dc-4603-bb22-d9209a466ece" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:03bd9690-8127-4275-bdfb-3d9d7b0b3ecc" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:5cd50f24-1885-4f3e-81a1-a2051f69382a" - } - ] - } - }, - { - "identification": "urn:uuid:fdf6d09f-2238-426e-a06d-c30120c1fbcf", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "II-12", - "key": "manufacturerPartId" - }, - { - "value": "OMCLWIEVXVNKDTODB", - "key": "partInstanceId" - }, - { - "value": "OMCLWIEVXVNKDTODB", - "key": "van" - } - ], - "manufacturingInformation": { - "date": "2013-04-02T09:59:35.000Z", - "country": "DEU" - }, - "catenaXId": "urn:uuid:a8cb40aa-3c7c-48ff-877c-ba08a8ad0bbb", - "partTypeInformation": { - "manufacturerPartId": "II-12", - "classification": "product", - "nameAtManufacturer": "Vehicle Combustion" + "submodels" : [ { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:b13a42ac-3b7c-447e-9899-840b9974376c", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "54165444-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-836766975029792254411934", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:90581d63-af84-4284-8c66-4cbd07d9c680", - "partTypeInformation": { - "manufacturerPartId": "54165444-59", - "customerPartId": "54165444-59", - "classification": "component", - "nameAtManufacturer": "Bumper front", - "nameAtCustomer": "Bumper front" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:2bfe82e9-565b-4d55-80a8-4b6a61d33f20" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:666950c5-90d2-4062-857a-cc99739a8353", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "32494586-73", - "key": "manufacturerPartId" - }, - { - "value": "NO-831575746110202156055552", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:144225c7-1101-49a9-88c0-c7d04547cf7f", - "partTypeInformation": { - "manufacturerPartId": "32494586-73", - "customerPartId": "32494586-73", - "classification": "component", - "nameAtManufacturer": "Differential Gear", - "nameAtCustomer": "Differential Gear" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a609b239-d015-4f37-a8eb-5a1956756ab2" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:1753d662-bdf6-4e77-86eb-009e95b0034c", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "20125432-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-067039222270178572226809", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:ac326bc7-3ecd-4f09-ad9b-8384b5be8ebb", - "partTypeInformation": { - "manufacturerPartId": "20125432-59", - "customerPartId": "20125432-59", - "classification": "component", - "nameAtManufacturer": "Indicator left", - "nameAtCustomer": "Indicator left" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:26d7bebc-263b-4874-8222-971a2720a355" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:f9cf79a3-f54e-46c5-9845-df92a6f3084d", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "94421589-82", - "key": "manufacturerPartId" - }, - { - "value": "NO-641925859146312096936462", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:6cd45b1b-d58a-4cb6-af22-a8a06052492a", - "partTypeInformation": { - "manufacturerPartId": "94421589-82", - "customerPartId": "94421589-82", - "classification": "component", - "nameAtManufacturer": "Engine hood", - "nameAtCustomer": "Engine hood" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d2f93c23-6fb6-4585-b3cb-c0c91269e4fd" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:aed620df-e726-432c-9611-5f4403119177", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "57929013-09", - "key": "manufacturerPartId" - }, - { - "value": "NO-266090960468979771745477", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:2c398681-7ab5-4812-8c57-521d0b0af07f", - "partTypeInformation": { - "manufacturerPartId": "57929013-09", - "customerPartId": "57929013-09", - "classification": "component", - "nameAtManufacturer": "AC compressor", - "nameAtCustomer": "Air conditioning compressor" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6e1fd2a3-5350-4492-9ac2-163eb62094e3" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:2b4483f0-c42b-4881-b5cb-5a9209759c4b", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "78744126-74", - "key": "manufacturerPartId" - }, - { - "value": "NO-254437110258168894203883", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:9d0987b4-539f-4b29-b07b-dcd841befd2b", - "partTypeInformation": { - "manufacturerPartId": "78744126-74", - "customerPartId": "78744126-74", - "classification": "component", - "nameAtManufacturer": "Taillight front", - "nameAtCustomer": "Taillight front" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:81a65eb2-be1d-4bb4-ab39-9f859b282bc5" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:c5713f84-0abd-4f11-bace-06d12896a7e0", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "00871379-44", - "key": "manufacturerPartId" - }, - { - "value": "NO-810434303513170472423224", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:52ceb54d-3b15-41d2-9b0e-f05d00767dea", - "partTypeInformation": { - "manufacturerPartId": "00871379-44", - "customerPartId": "00871379-44", - "classification": "component", - "nameAtManufacturer": "Chassis", - "nameAtCustomer": "Chassis" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:2bafe7e7-e1c4-46f1-8da4-133dc4b92deb" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:3784adcf-58a7-4389-8d41-3b18f9ce9136", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "28673126-98", - "key": "manufacturerPartId" - }, - { - "value": "NO-116534874207562349537203", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:bb308242-ee6f-4339-82a9-64c40e7f8913", - "partTypeInformation": { - "manufacturerPartId": "28673126-98", - "customerPartId": "28673126-98", - "classification": "component", - "nameAtManufacturer": "Door r-r", - "nameAtCustomer": "Door rear-right" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1e5a8888-5e03-4231-abfa-00de3be05da1" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:6ab821c7-3f9b-4b8e-938a-a57521210466", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "09002013-68", - "key": "manufacturerPartId" - }, - { - "value": "NO-140967008405004093498073", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:6fe17840-60fb-45e8-87d0-15b9b2c4ba17", - "partTypeInformation": { - "manufacturerPartId": "09002013-68", - "customerPartId": "09002013-68", - "classification": "component", - "nameAtManufacturer": "Trailer coupling", - "nameAtCustomer": "Tailer coupling" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:784af922-1460-49b2-b4dd-d14f72fb3a7a" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:d249f240-fd17-4f32-8e5b-41b62101e2f3", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "85023955-75", - "key": "manufacturerPartId" - }, - { - "value": "NO-435771775002467620350260", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:adf502d3-0cb4-40ba-b90f-59807ca8f2f3", - "partTypeInformation": { - "manufacturerPartId": "85023955-75", - "customerPartId": "85023955-75", - "classification": "component", - "nameAtManufacturer": "Tailgate", - "nameAtCustomer": "Tailgate" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:14d1edce-921f-48e1-a827-2bbf90146d09" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:fb4687aa-21c4-4684-b329-bba58a23c7f1", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "81324139-23", - "key": "manufacturerPartId" - }, - { - "value": "NO-870721222928869858943331", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:ab096d16-e53d-4216-8b5f-be57f83a278a", - "partTypeInformation": { - "manufacturerPartId": "81324139-23", - "customerPartId": "81324139-23", - "classification": "component", - "nameAtManufacturer": "Alternator", - "nameAtCustomer": "Alternator" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:f39b5055-fdc1-463d-8621-9d0e04feed92" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:b59e6192-a95c-4b6a-a14b-d38441741c3e", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "78141846-87", - "key": "manufacturerPartId" - }, - { - "value": "NO-201731619969435940248838", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:bdc6a49d-6d3c-444e-85ff-2262e4650b35", - "partTypeInformation": { - "manufacturerPartId": "78141846-87", - "customerPartId": "78141846-87", - "classification": "component", - "nameAtManufacturer": "Starter motor", - "nameAtCustomer": "Starter motor" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:97f9e4ef-9c5d-4038-9ea6-1102dfc70e01" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:1a9bae00-d9c2-4cc3-a71f-9d20f20245fa", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "43501996-98", - "key": "manufacturerPartId" - }, - { - "value": "NO-711041363429031825273799", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:095a5cd5-0295-442e-8540-dbc839498774", - "partTypeInformation": { - "manufacturerPartId": "43501996-98", - "customerPartId": "43501996-98", - "classification": "component", - "nameAtManufacturer": "Dashboard", - "nameAtCustomer": "Dashboard" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:0df8a9d4-1410-4c42-8824-ce45ad5dcad6" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:043a6c12-6f34-4fac-9748-67ca7d2df15a", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "15635759-16", - "key": "manufacturerPartId" - }, - { - "value": "NO-856252272738820326905748", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:820db5a1-18ab-4896-9a77-33eff163dd8f", - "partTypeInformation": { - "manufacturerPartId": "15635759-16", - "customerPartId": "15635759-16", - "classification": "component", - "nameAtManufacturer": "Door r-l", - "nameAtCustomer": "Door rear-left" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:0d18c568-3e2c-468a-b3b6-005b0bbb0b4f" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:c339f7f8-72ac-49c4-b892-639268819139", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "61184040-23", - "key": "manufacturerPartId" - }, - { - "value": "NO-532146030429001450985888", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:abdeec09-79cf-4c4e-9a0e-687496fd0944", - "partTypeInformation": { - "manufacturerPartId": "61184040-23", - "customerPartId": "61184040-23", - "classification": "component", - "nameAtManufacturer": "Taillight rear", - "nameAtCustomer": "Taillight rear" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:cf26332b-250a-4e75-a971-e01970e8e04e" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:83f58121-1f84-4878-9863-86ec9fb656a3", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "36643162-35", - "key": "manufacturerPartId" - }, - { - "value": "NO-479044561992173510156975", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:1a044db4-589c-4bd0-bfdd-fb0a4938fab3", - "partTypeInformation": { - "manufacturerPartId": "36643162-35", - "customerPartId": "36643162-35", - "classification": "component", - "nameAtManufacturer": "Fender right", - "nameAtCustomer": "Fender right" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4b6a8d0e-d6cf-492a-bbdd-20956baaa6e9" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:d2dee1e6-7d90-44ea-9ef0-554de18c1029", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "77795937-13", - "key": "manufacturerPartId" - }, - { - "value": "NO-205350704316891513567125", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:f25037bd-1525-41af-97ca-ae51581075a4", - "partTypeInformation": { - "manufacturerPartId": "77795937-13", - "customerPartId": "77795937-13", - "classification": "component", - "nameAtManufacturer": "Steering wheel", - "nameAtCustomer": "Steering wheel" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:691ec9f3-22fe-49f8-97af-697bcdb903a8" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:3cb1c5e1-1ce1-4812-a75a-cb810dae0fa6", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "08901347-87", - "key": "manufacturerPartId" - }, - { - "value": "NO-570881491452278421574187", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:babced29-f4bc-4dbf-9396-f0bb3bd37965", - "partTypeInformation": { - "manufacturerPartId": "08901347-87", - "customerPartId": "08901347-87", - "classification": "component", - "nameAtManufacturer": "Rims", - "nameAtCustomer": "Rims" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9bec264e-0180-470d-be25-5976ca4eaf5c" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:e387b16b-c3fd-4202-9388-ef36396cfb5c", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "67034319-44", - "key": "manufacturerPartId" - }, - { - "value": "NO-327269234882486610360671", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:af727506-b369-469b-829e-0d0b10db2f49", - "partTypeInformation": { - "manufacturerPartId": "67034319-44", - "customerPartId": "67034319-44", - "classification": "component", - "nameAtManufacturer": "Turbocharger", - "nameAtCustomer": "Turbocharger" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a79aa73d-0d8c-4d84-9607-f21f039c8d84" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:40c6f66b-0b71-4b1b-b52e-0888f020efd9", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "13769860-47", - "key": "manufacturerPartId" - }, - { - "value": "NO-302484356154870721127636", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:adb2b086-8edf-4ae6-bb3f-7b4338e136a5", - "partTypeInformation": { - "manufacturerPartId": "13769860-47", - "customerPartId": "13769860-47", - "classification": "component", - "nameAtManufacturer": "Fender left", - "nameAtCustomer": "Fender right" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b274c885-0a36-4d74-ad8a-dbc2fb951a8c" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:8c984804-657a-4a49-816b-bc51ff0a292f", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "45415162-57", - "key": "manufacturerPartId" - }, - { - "value": "NO-079766503923668679944250", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:103a27de-f422-49b4-bc10-e1a157230fdd", - "partTypeInformation": { - "manufacturerPartId": "45415162-57", - "customerPartId": "45415162-57", - "classification": "component", - "nameAtManufacturer": "Led headlight", - "nameAtCustomer": "Led headlight" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:2aa238f2-bcb7-4037-bb65-824610f5b23a" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:190fa83a-a4d5-4e53-8d2c-8aec1c515497", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "88111709-49", - "key": "manufacturerPartId" - }, - { - "value": "NO-529606228230415468170075", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:40fbf943-3965-4574-8435-5aec0752b777", - "partTypeInformation": { - "manufacturerPartId": "88111709-49", - "customerPartId": "88111709-49", - "classification": "component", - "nameAtManufacturer": "Axle part rear", - "nameAtCustomer": "Axle part rear" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:35c78eca-db53-442c-9e01-467fc22c9434" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:0c3f280a-de95-4f8a-846d-c374805a6300", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "58471477-24", - "key": "manufacturerPartId" - }, - { - "value": "NO-494974510862015633246080", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:5be230e2-7050-4d1e-a2b6-37a32111b374", - "partTypeInformation": { - "manufacturerPartId": "58471477-24", - "customerPartId": "58471477-24", - "classification": "component", - "nameAtManufacturer": "Exterior mirror right", - "nameAtCustomer": "Exterior mirror right" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:f4db9a02-3181-4f2d-903f-ba5cbc5a9b82" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:36e521b6-c1b2-48e3-bd44-a96f7aaad29b", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "19073706-76", - "key": "manufacturerPartId" - }, - { - "value": "NO-861166602257385098796306", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:2cfaf921-1095-4f6c-b0bc-ea34f7e81cb2", - "partTypeInformation": { - "manufacturerPartId": "19073706-76", - "customerPartId": "19073706-76", - "classification": "component", - "nameAtManufacturer": "Indicator right", - "nameAtCustomer": "Indicator right" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d2d2b3b9-818f-4dc0-b77b-8c851d0c0af2" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:47043f89-fe4a-4ea0-8511-97e325381476", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "22768257-25", - "key": "manufacturerPartId" - }, - { - "value": "NO-619091520512352910610918", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:43dd6a52-24c3-4ba1-8a7f-d80ce0b3dc79", - "partTypeInformation": { - "manufacturerPartId": "22768257-25", - "customerPartId": "22768257-25", - "classification": "component", - "nameAtManufacturer": "Bumper rear", - "nameAtCustomer": "Bumper rear" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:24d2e568-e161-4eb6-b599-9e1dee3cd333" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:6d72aa1c-3b9b-4605-9372-d7483ea54fbd", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "12093297-03", - "key": "manufacturerPartId" - }, - { - "value": "NO-560032192197631661606006", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:02466410-d73a-43a2-ae4a-0cc26197244d", - "partTypeInformation": { - "manufacturerPartId": "12093297-03", - "customerPartId": "12093297-03", - "classification": "component", - "nameAtManufacturer": "Axle part front", - "nameAtCustomer": "Axle part front" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:879f66ad-a5c5-48d4-bda3-18c192423a63" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:93aca82f-43d6-4dc1-a07b-ed2d650711a2", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "65529521-37", - "key": "manufacturerPartId" - }, - { - "value": "NO-106417252757483959580329", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:be5fc459-1105-4e56-b8b5-e656a7c471f1", - "partTypeInformation": { - "manufacturerPartId": "65529521-37", - "customerPartId": "65529521-37", - "classification": "component", - "nameAtManufacturer": "Exterior mirror left", - "nameAtCustomer": "Exterior mirror left" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c98dc077-f0fe-423d-8d74-48ef630232e7" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:a137cea1-4e81-4872-962b-267c60c44824", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "45863316-60", - "key": "manufacturerPartId" - }, - { - "value": "NO-031383569783493470146383", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:f8dd4a33-b5dc-4603-bb22-d9209a466ece", - "partTypeInformation": { - "manufacturerPartId": "45863316-60", - "customerPartId": "45863316-60", - "classification": "component", - "nameAtManufacturer": "Tires", - "nameAtCustomer": "Tires" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a06a4c66-9f8e-43f4-84c1-d5b35c8c53b0" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:0e6bb115-2985-4745-8ab0-a4dc63d01947", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:0eefc461-f341-4f71-9072-7291356a1c6d", - "childParts": [ - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:08a861a1-28f5-450c-b275-e5863cb57df5" - } - ] - } - }, - { - "identification": "urn:uuid:4ca55f18-1be9-4c76-9086-6d655c7e6bc0", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003CSGV", - "key": "manufacturerId" - }, - { - "value": "22782277-50", - "key": "manufacturerPartId" - }, - { - "value": "NO-873812843799914468642242", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:0eefc461-f341-4f71-9072-7291356a1c6d", - "partTypeInformation": { - "manufacturerPartId": "22782277-50", - "customerPartId": "22782277-50", - "classification": "component", - "nameAtManufacturer": "Door f-l", - "nameAtCustomer": "Door front-left" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:698fe434-5dc2-4c6c-80ff-d5a40223f52f" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:de9aff68-3e7d-4e45-9083-dcf9df137c7f", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "73849201-61", - "key": "manufacturerPartId" - }, - { - "value": "NO-936078961041153035581527", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:78a6c924-083f-4858-832d-774a1207d232", - "partTypeInformation": { - "manufacturerPartId": "73849201-61", - "customerPartId": "73849201-61", - "classification": "component", - "nameAtManufacturer": "Catalysator", - "nameAtCustomer": "Catalysator" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:7f7d23b1-d951-4297-8b26-dcab953da0c1" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:4171cf95-7f2f-41ba-b79a-acc2bd29f571", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "10030939-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-069516230374935255094238", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:2591039c-e81c-4347-8a70-c4a2eba0bcd9", - "partTypeInformation": { - "manufacturerPartId": "10030939-59", - "customerPartId": "10030939-59", - "classification": "component", - "nameAtManufacturer": "Engine", - "nameAtCustomer": "Engine" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e97af751-4743-4884-8544-d29e26313c43" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:fcf58e5c-8b54-4743-b48f-c7735bfe0b4e", - "aspectType": "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension", - "payload": { - "diameter": "560", - "length": "843", - "width": "762", - "weight": "180", - "height": "711" - } - }, - { - "identification": "urn:uuid:3202a190-0bf7-47b5-bef1-64eadf87d303", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003CSGV", - "key": "manufacturerId" - }, - { - "value": "95657362-64", - "key": "manufacturerPartId" - }, - { - "value": "NO-819638096990191034874672", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:aa6e48b8-4e0d-4eeb-8dc0-ecd3e8a1b1fb", - "partTypeInformation": { - "manufacturerPartId": "33740332-54", - "customerPartId": "33740332-54", - "classification": "component", - "nameAtManufacturer": "Door f-r", - "nameAtCustomer": "Door front-right" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:7ad788d4-fb9d-47e7-984e-bdef6d9b4fcc" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:ac51100e-a4ef-4ebe-bfb0-8423cd7a1c09", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:aa6e48b8-4e0d-4eeb-8dc0-ecd3e8a1b1fb", - "childParts": [ - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ef0a4ba8-daa7-474d-be2d-c6755bba3584" - } - ] - } - }, - { - "identification": "urn:uuid:ebaa9fac-f945-43db-9eac-35b686b38960", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000000BJTL", - "key": "manufacturerId" - }, - { - "value": "95657762-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-796893452921362288979275", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:08a861a1-28f5-450c-b275-e5863cb57df5", - "partTypeInformation": { - "manufacturerPartId": "95657762-59", - "customerPartId": "95657762-59", - "classification": "component", - "nameAtManufacturer": "Door Key", - "nameAtCustomer": "Door Key" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:6feef408-5177-441b-a395-7d1168d0b892", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:5cd50f24-1885-4f3e-81a1-a2051f69382a", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.3301", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:bf82a05c-f170-4f37-9e75-79e84818fb41" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a742d285-d9ef-4644-a52c-9424347257d5" - }, - { - "quantity": { - "quantityNumber": "0.2001", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d1d13611-26a5-498b-bcfc-1b62a4ed1176" - } - ] - } - }, - { - "identification": "urn:uuid:d975e8a3-3494-48f8-a4f8-01c4c84efc1b", - "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload": { - "component": [ - { - "materialName": "Glue", - "recycledContent": 0, - "materialClass": "6.2", - "quantity": { - "materialValue": 0.3301, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "GL338" - } - ] - } - }, - { - "identification": "urn:uuid:5dfe0557-d126-4385-af41-0f0edc32170e", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B5MJ", - "key": "manufacturerId" - }, - { - "value": "00666W2-79", - "key": "manufacturerPartId" - }, - { - "value": "NO-020201982464201224279694", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:5cd50f24-1885-4f3e-81a1-a2051f69382a", - "partTypeInformation": { - "manufacturerPartId": "00666W2-79", - "customerPartId": "00666W2-79", - "classification": "component", - "nameAtManufacturer": "ECU", - "nameAtCustomer": "ECU" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "HM-54", + "key" : "manufacturerPartId" + }, { + "value" : "OMCESJELGZTODJEMH", + "key" : "partInstanceId" + }, { + "value" : "OMCESJELGZTODJEMH", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2015-08-21T12:05:27.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "partTypeInformation" : { + "manufacturerPartId" : "HM-54", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Combustion" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-159783786359351467396330", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f39b5055-fdc1-463d-8621-9d0e04feed92", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-648085728630125031216606", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0d18c568-3e2c-468a-b3b6-005b0bbb0b4f", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-875452192223802089857293", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7ad788d4-fb9d-47e7-984e-bdef6d9b4fcc", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + }, { + "catenaXId" : "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.2014", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" } - } - }, - { - "identification": "urn:uuid:3d439e8f-3b4e-4236-8264-d9ac36178e7e", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000000BJTL", - "key": "manufacturerId" - }, - { - "value": "95657762-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-531754883419836002307104", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:ef0a4ba8-daa7-474d-be2d-c6755bba3584", - "partTypeInformation": { - "manufacturerPartId": "95657762-59", - "customerPartId": "95657762-59", - "classification": "component", - "nameAtManufacturer": "Door Key", - "nameAtCustomer": "Door Key" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:458974fe-e4bf-4221-b108-b727f6da2466" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:b4599ae9-e7c5-444d-a321-adfd74f1a53a", - "aspectType": "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension", - "payload": { - "diameter": "380", - "length": "810", - "width": "590", - "weight": "85", - "height": "610" - } - }, - { - "identification": "urn:uuid:f8b2face-1f1a-4c5f-8801-d3f28a554b3c", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:03bd9690-8127-4275-bdfb-3d9d7b0b3ecc", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.2014", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2db6b2b0-dcd5-4783-ac5d-ca58009f93e4" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:3b417f12-fc54-4c55-a337-3f174e5b8886" - }, - { - "quantity": { - "quantityNumber": "0.2341", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0ec2b3a8-e2cb-4302-8bdb-2807deed0ecf" - } - ] - } - }, - { - "identification": "urn:uuid:1c58a36f-0cd1-4c1b-9922-233646ef190a", - "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload": { - "component": [ - { - "materialName": "Carbon Steel", - "recycledContent": 0, - "materialClass": "1.1.2", - "quantity": { - "materialValue": 72.843, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "CS2" - }, - { - "materialName": "Oil", - "recycledContent": 0, - "materialClass": "9.2", - "quantity": { - "materialValue": 6.9, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "liquid", - "materialAbbreviation": "SAE40" - }, - { - "materialName": "Copper", - "recycledContent": 0, - "materialClass": "3.1", - "quantity": { - "materialValue": 1.2, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "aggregateState": "solid", - "materialAbbreviation": "CO7" - } - ] - } - }, - { - "identification": "urn:uuid:266bf641-201f-4c8b-bd35-1be6b58bf1ca", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B2OM", - "key": "manufacturerId" - }, - { - "value": "1O222E8-43", - "key": "manufacturerPartId" - }, - { - "value": "NO-089795994822538829384206", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:03bd9690-8127-4275-bdfb-3d9d7b0b3ecc", - "partTypeInformation": { - "manufacturerPartId": "1O222E8-43", - "customerPartId": "1O222E8-43", - "classification": "component", - "nameAtManufacturer": "Transmission", - "nameAtCustomer": "Transmission" - } - } - }, - { - "identification": "urn:uuid:7b121026-0b2a-4547-b096-614906be1506", - "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload": { - "materialName": "Engineering Plastics", - "materialClass": "5.1", - "component": [ - { - "materialName": "PA66", - "recycledContent": 0, - "materialClass": "5.1", - "quantity": { - "unit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:percent" - }, - "value": 70 - }, - "aggregateState": "solid", - "materialAbbreviation": "PA66" - }, - { - "materialName": "GF-Faser", - "recycledContent": 0, - "materialClass": "5.1", - "quantity": { - "unit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:percent" - }, - "value": 30 - }, - "aggregateState": "solid", - "materialAbbreviation": "GF30" - } - ], - "recycledContent": 0 - } - }, - { - "identification": "urn:uuid:1c86f2f0-21e7-4041-85d6-244fa470bcdc", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "00906R7-15", - "key": "manufacturerPartId" - }, - { - "value": "NO-528923587146262366153473", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:d1d13611-26a5-498b-bcfc-1b62a4ed1176", - "partTypeInformation": { - "manufacturerPartId": "00906R7-15", - "customerPartId": "00906R7-15", - "classification": "component", - "nameAtManufacturer": "Engineering Plastics", - "nameAtCustomer": "Engineering Plastics" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:bb17dcf0-e1ec-4608-bc6c-043c93a66e8c" + }, { + "quantity" : { + "quantityNumber" : "0.2341", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" } - } - }, - { - "identification": "urn:uuid:92d76b24-5d82-487b-a263-22625cce57f1", - "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AXS3", - "key": "manufacturerId" - }, - { - "value": "92329W2-35", - "key": "manufacturerPartId" - }, - { - "value": "NO-588277814259423760073398", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:bf82a05c-f170-4f37-9e75-79e84818fb41", - "partTypeInformation": { - "manufacturerPartId": "92329W2-35", - "customerPartId": "92329W2-35", - "classification": "component", - "nameAtManufacturer": "Glue", - "nameAtCustomer": "Glue" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:df86b6e7-d3e2-46e7-8250-1e7be432a238" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-873908589180071499476796", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "92618B6-91", + "key" : "manufacturerPartId" + }, { + "value" : "NO-996973268325924049754969", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:458974fe-e4bf-4221-b108-b727f6da2466", + "partTypeInformation" : { + "manufacturerPartId" : "92618B6-91", + "customerPartId" : "92618B6-91", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + }, { + "catenaXId" : "urn:uuid:df86b6e7-d3e2-46e7-8250-1e7be432a238", + "childParts" : [ ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "12971M9-93", + "key" : "manufacturerPartId" + }, { + "value" : "NO-697528248692636000290241", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:df86b6e7-d3e2-46e7-8250-1e7be432a238", + "partTypeInformation" : { + "manufacturerPartId" : "12971M9-93", + "customerPartId" : "12971M9-93", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + }, { + "catenaXId" : "urn:uuid:bb17dcf0-e1ec-4608-bc6c-043c93a66e8c", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" } - } - }, - { - "identification": "urn:uuid:f06bccb3-3cb8-4cdb-b15a-3a60e2d656ec", - "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload": { - "materialName": "Glue", - "materialClass": "5.5", - "component": [ - { - "materialName": "Aluminium oxide", - "recycledContent": 0, - "materialClass": "5.5.1", - "quantity": { - "unit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:percent" - }, - "value": 70 - }, - "aggregateState": "solid", - "materialAbbreviation": "AL7" - }, - { - "materialName": "Other", - "recycledContent": 0, - "materialClass": "5.5.2", - "quantity": { - "unit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:percent" - }, - "value": 30 - }, - "aggregateState": "", - "materialAbbreviation": "" - } - ], - "recycledContent": 0 - } - }, - { - "identification": "urn:uuid:eb3098a7-fef0-43fc-8456-319f5dfe0ab8", - "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "92127S2-46", - "key": "manufacturerPartId" - }, - { - "value": "NO-774433170394149105999362", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:2db6b2b0-dcd5-4783-ac5d-ca58009f93e4", - "partTypeInformation": { - "manufacturerPartId": "92127S2-46", - "customerPartId": "92127S2-46", - "classification": "component", - "nameAtManufacturer": "Engineering Plastics", - "nameAtCustomer": "Engineering Plastics" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:fab8e14b-6d39-4efa-aa65-c6cd09d3af9f" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "59814X5-67", + "key" : "manufacturerPartId" + }, { + "value" : "NO-832707732988444699883511", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bb17dcf0-e1ec-4608-bc6c-043c93a66e8c", + "partTypeInformation" : { + "manufacturerPartId" : "59814X5-67", + "customerPartId" : "59814X5-67", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "97985R7-02", + "key" : "manufacturerPartId" + }, { + "value" : "NO-407130073310430094548959", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fab8e14b-6d39-4efa-aa65-c6cd09d3af9f", + "partTypeInformation" : { + "manufacturerPartId" : "97985R7-02", + "customerPartId" : "97985R7-02", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-936146767662584710972092", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c98dc077-f0fe-423d-8d74-48ef630232e7", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-795833402191353495740434", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cf26332b-250a-4e75-a971-e01970e8e04e", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-109742937265631134067226", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:14d1edce-921f-48e1-a827-2bbf90146d09", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-859558081368951863797556", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:0df8a9d4-1410-4c42-8824-ce45ad5dcad6", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-736995801506174463933281", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:35c78eca-db53-442c-9e01-467fc22c9434", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-678883217070402841337873", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d2f93c23-6fb6-4585-b3cb-c0c91269e4fd", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-497606275003773028096452", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:24d2e568-e161-4eb6-b599-9e1dee3cd333", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + }, { + "catenaXId" : "urn:uuid:6e1fd2a3-5350-4492-9ac2-163eb62094e3", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:6be4b9ef-2884-4fa4-ba2a-e202cbef23d0", - "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload": { - "materialName": "Engineering Plastics", - "materialClass": "5.1", - "component": [ - { - "materialName": "PA66", - "recycledContent": 0, - "materialClass": "5.1", - "quantity": { - "unit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:percent" - }, - "value": 70 - }, - "aggregateState": "solid", - "materialAbbreviation": "PA66" - }, - { - "materialName": "GF-Faser", - "recycledContent": 0, - "materialClass": "5.1", - "quantity": { - "unit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:percent" - }, - "value": 30 - }, - "aggregateState": "solid", - "materialAbbreviation": "GF30" - } - ], - "recycledContent": 0 - } - }, - { - "identification": "urn:uuid:707048e6-0c60-4811-9a4e-70d84589525a", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:a742d285-d9ef-4644-a52c-9424347257d5", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.1908", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:84c8573c-2c22-410b-a2db-ee0064847abd" - } - ] - } - }, - { - "identification": "urn:uuid:0760da29-8340-4dce-827d-eac07efda07d", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B3NX", - "key": "manufacturerId" - }, - { - "value": "83450G3-11", - "key": "manufacturerPartId" - }, - { - "value": "NO-527213404604696652997115", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:a742d285-d9ef-4644-a52c-9424347257d5", - "partTypeInformation": { - "manufacturerPartId": "83450G3-11", - "customerPartId": "83450G3-11", - "classification": "component", - "nameAtManufacturer": "Sensor", - "nameAtCustomer": "Sensor" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9e3a7831-c396-48df-acc0-482d6930e3b0" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-992523705893628105637478", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6e1fd2a3-5350-4492-9ac2-163eb62094e3", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-598454621664395799844065", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9e3a7831-c396-48df-acc0-482d6930e3b0", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-599982937473580405159269", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:691ec9f3-22fe-49f8-97af-697bcdb903a8", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-069096896052108527820936", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:879f66ad-a5c5-48d4-bda3-18c192423a63", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-268116253207603357192097", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2bfe82e9-565b-4d55-80a8-4b6a61d33f20", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-336648349977653376674280", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e97af751-4743-4884-8544-d29e26313c43", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-509845995490482164990452", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2bafe7e7-e1c4-46f1-8da4-133dc4b92deb", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + }, { + "catenaXId" : "urn:uuid:81a65eb2-be1d-4bb4-ab39-9f859b282bc5", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:b221ead3-2bb8-4668-b7fa-15d4a89d4ef8", - "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload": { - "component": [ - { - "materialName": "Glue", - "materialClass": "6.2", - "quantity": { - "materialValue": 0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "weight": "0.2341", - "materialAbbreviation": "GL338" - } - ] - } - }, - { - "identification": "urn:uuid:7a053fad-206c-445c-b0a7-f8c99291c43a", - "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AXS3", - "key": "manufacturerId" - }, - { - "value": "65904N5-41", - "key": "manufacturerPartId" - }, - { - "value": "NO-540357339794874359231068", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:0ec2b3a8-e2cb-4302-8bdb-2807deed0ecf", - "partTypeInformation": { - "manufacturerPartId": "65904N5-41", - "customerPartId": "65904N5-41", - "classification": "component", - "nameAtManufacturer": "Glue", - "nameAtCustomer": "Glue" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5d95b5a1-bd5a-4703-bd15-ce9e893a8f3c" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-066375034236248781737744", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:81a65eb2-be1d-4bb4-ab39-9f859b282bc5", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-362782815239459207049367", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5d95b5a1-bd5a-4703-bd15-ce9e893a8f3c", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + }, { + "catenaXId" : "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.3301", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" } - } - }, - { - "identification": "urn:uuid:b8cc6798-ef68-4953-9366-38c16267f8c8", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:0ec2b3a8-e2cb-4302-8bdb-2807deed0ecf", - "childParts": [] - } - }, - { - "identification": "urn:uuid:01d4f191-557b-43ea-a0f5-bdbf94561bb8", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B3NX", - "key": "manufacturerId" - }, - { - "value": "52357G7-90", - "key": "manufacturerPartId" - }, - { - "value": "NO-504183894273499969784798", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:3b417f12-fc54-4c55-a337-3f174e5b8886", - "partTypeInformation": { - "manufacturerPartId": "52357G7-90", - "customerPartId": "52357G7-90", - "classification": "component", - "nameAtManufacturer": "Sensor", - "nameAtCustomer": "Sensor" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3db730be-9de5-4db5-a58d-684de36484e7" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:852bff5f-58f4-46ff-ae9e-cd1edc972a5e", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:3b417f12-fc54-4c55-a337-3f174e5b8886", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.1908", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:3895104d-89f8-4caf-aaa8-b6947c6ef5c6" - } - ] - } - }, - { - "identification": "urn:uuid:f7991b9e-d8f1-4ccb-bcc3-1a4c60a1ca21", - "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "23595K7-98", - "key": "manufacturerPartId" - }, - { - "value": "NO-216975361602633013156521", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:84c8573c-2c22-410b-a2db-ee0064847abd", - "partTypeInformation": { - "manufacturerPartId": "23595K7-98", - "customerPartId": "23595K7-98", - "classification": "component", - "nameAtManufacturer": "Engineering Plastics", - "nameAtCustomer": "Engineering Plastics" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:73173bf5-08df-4898-9d6d-8899015c161e" + }, { + "quantity" : { + "quantityNumber" : "0.2001", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" } - } - }, - { - "identification": "urn:uuid:5d1d3594-b771-4351-977f-e466531a1ed8", - "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload": { - "materialName": "Engineering Plastics", - "materialClass": "5.1", - "component": [ - { - "materialName": "PA66", - "recycledContent": 0, - "materialClass": "5.1", - "quantity": { - "unit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:percent" - }, - "value": 70 - }, - "aggregateState": "solid", - "materialAbbreviation": "PA66" - }, - { - "materialName": "GF-Faser", - "recycledContent": 0, - "materialClass": "5.1", - "quantity": { - "unit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:percent" - }, - "value": 30 - }, - "aggregateState": "solid", - "materialAbbreviation": "GF30" - } - ], - "recycledContent": 0 - } - }, - { - "identification": "urn:uuid:305c5f54-588e-4457-928b-9c0acdbd9516", - "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", - "payload": { - "materialName": "NTIER Product", - "materialClass": "5.5", - "component": [ - { - "materialName": "Aluminium oxide", - "recycledContent": 0, - "materialClass": "5.5.1", - "quantity": { - "unit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:percent" - }, - "value": 60 - }, - "aggregateState": "solid", - "materialAbbreviation": "" - }, - { - "materialName": "Other", - "recycledContent": 0, - "materialClass": "5.5.2", - "quantity": { - "unit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:percent" - }, - "value": 40 - }, - "aggregateState": "", - "materialAbbreviation": "" - } - ], - "recycledContent": 0 - } - }, - { - "identification": "urn:uuid:d506eec1-e90e-45bd-a6ae-d4f49e1966b6", - "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "09511Y9-22", - "key": "manufacturerPartId" - }, - { - "value": "NO-338902845304557892409604", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:3895104d-89f8-4caf-aaa8-b6947c6ef5c6", - "partTypeInformation": { - "manufacturerPartId": "09511Y9-22", - "customerPartId": "09511Y9-22", - "classification": "component", - "nameAtManufacturer": "NTIER Product", - "nameAtCustomer": "NTIER Product" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3e22f4f9-b2e3-4e8a-9c8f-f2f7ddaa43a2" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "82569I5-92", + "key" : "manufacturerPartId" + }, { + "value" : "NO-334015696717292140049666", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743", + "partTypeInformation" : { + "manufacturerPartId" : "82569I5-92", + "customerPartId" : "82569I5-92", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "75712F5-01", + "key" : "manufacturerPartId" + }, { + "value" : "NO-605608995342255025031920", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3e22f4f9-b2e3-4e8a-9c8f-f2f7ddaa43a2", + "partTypeInformation" : { + "manufacturerPartId" : "75712F5-01", + "customerPartId" : "75712F5-01", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + }, { + "catenaXId" : "urn:uuid:73173bf5-08df-4898-9d6d-8899015c161e", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" } - } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:07e0997f-4212-4456-8f27-164b30fc8355" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "93129L2-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-385471450329826329987414", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:73173bf5-08df-4898-9d6d-8899015c161e", + "partTypeInformation" : { + "manufacturerPartId" : "93129L2-82", + "customerPartId" : "93129L2-82", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "58787H0-00", + "key" : "manufacturerPartId" + }, { + "value" : "NO-372624279623697356085107", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:07e0997f-4212-4456-8f27-164b30fc8355", + "partTypeInformation" : { + "manufacturerPartId" : "58787H0-00", + "customerPartId" : "58787H0-00", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "18902Y6-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-029075908400452177212167", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3db730be-9de5-4db5-a58d-684de36484e7", + "partTypeInformation" : { + "manufacturerPartId" : "18902Y6-24", + "customerPartId" : "18902Y6-24", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-533642229232718051376567", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a79aa73d-0d8c-4d84-9607-f21f039c8d84", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-921997959382740097215495", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b274c885-0a36-4d74-ad8a-dbc2fb951a8c", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-184251322111987500605285", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7f7d23b1-d951-4297-8b26-dcab953da0c1", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-155814525871073145655296", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d2d2b3b9-818f-4dc0-b77b-8c851d0c0af2", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-542786014164812113169432", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a609b239-d015-4f37-a8eb-5a1956756ab2", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-538477214738641259012537", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:26d7bebc-263b-4874-8222-971a2720a355", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-194992578318124977058956", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:698fe434-5dc2-4c6c-80ff-d5a40223f52f", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-568627629271216126073773", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2aa238f2-bcb7-4037-bb65-824610f5b23a", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-551783054415179887723580", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f4db9a02-3181-4f2d-903f-ba5cbc5a9b82", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-031375911513879669240632", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:97f9e4ef-9c5d-4038-9ea6-1102dfc70e01", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-106284885210407255353028", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4b6a8d0e-d6cf-492a-bbdd-20956baaa6e9", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-435856035485235689104018", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1e5a8888-5e03-4231-abfa-00de3be05da1", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-016136282528997805450947", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:784af922-1460-49b2-b4dd-d14f72fb3a7a", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-337144781845234931718094", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a06a4c66-9f8e-43f4-84c1-d5b35c8c53b0", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-475308452957816806114030", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9bec264e-0180-470d-be25-5976ca4eaf5c", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" } - ] -} + } ] +} \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-relationships.json b/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-relationships.json index 164dd424d6..2939fcb8ed 100644 --- a/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-relationships.json +++ b/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-relationships.json @@ -1,7 +1,7 @@ { "relationships": [ { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -13,12 +13,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:8ae3c8a9-2c80-4223-a798-db94c854465b" + "childCatenaXId": "urn:uuid:03556cd3-ae2a-48ad-a6a4-89631f8d41c8" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -30,12 +30,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:9abcceb1-02ed-4384-83bb-e3f5b3be77d4" + "childCatenaXId": "urn:uuid:d6142601-5e09-45fe-9b42-e53cf8cd458c" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -47,12 +47,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ef4ef0e2-4658-464c-ad1e-eae5afb77942" + "childCatenaXId": "urn:uuid:5fd291cf-e8df-4a46-8a8d-5054dbc3d1bf" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -64,12 +64,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:50edf0fc-95a7-40b3-ad43-9156f3b81768" + "childCatenaXId": "urn:uuid:b21cfd5b-dcf4-46fa-9227-3eb693567dd8" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -81,12 +81,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:57ced45e-4f98-4aa4-bb67-6f7c51b90a4b" + "childCatenaXId": "urn:uuid:ae2ad2b8-ed83-42b8-9953-3d37e224b3d7" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -98,12 +98,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:18f9d1ef-100e-4c0a-bb83-a407c644fcba" + "childCatenaXId": "urn:uuid:492781f5-62ff-4fb2-876c-3498e2844d13" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -115,12 +115,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:73477f4a-f49f-4306-b30f-3ab36ef72e6f" + "childCatenaXId": "urn:uuid:cc8e9448-b294-46e7-8110-337e8bfa3001" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -132,12 +132,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:3940c819-dd95-422b-aa32-f7d3f1930de8" + "childCatenaXId": "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -149,12 +149,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f2e6d0cd-5a9a-451d-a583-510c5209f64c" + "childCatenaXId": "urn:uuid:fa5804f1-8d4e-437c-aca2-a5491be61758" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -166,12 +166,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ec215159-fae3-47d8-98c6-d67b7ffe7c0c" + "childCatenaXId": "urn:uuid:badddd8a-0abf-4457-9d33-6eb05a3ac0ef" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -183,12 +183,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6c2f4f41-3924-43da-969d-1afee232194c" + "childCatenaXId": "urn:uuid:8eb9285f-5b10-4d5a-af7e-44e7fb0520f1" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -200,12 +200,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b32a9cda-b026-4715-b253-c08a7d11b840" + "childCatenaXId": "urn:uuid:7bbbc63f-ba86-4e1c-ad78-6bdb4a125783" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -217,12 +217,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0391b219-9bf5-44cc-89af-e5db399a7d21" + "childCatenaXId": "urn:uuid:8914a66e-b59b-405f-afff-b97d71ebece3" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -234,12 +234,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:7b2484b1-21b5-434a-aa2b-fd5434cc7ae3" + "childCatenaXId": "urn:uuid:a0f6803c-e4dc-4cda-8ad2-91cc57868449" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -251,12 +251,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:868df1e0-b497-4059-a0d3-3899630020da" + "childCatenaXId": "urn:uuid:5371bcac-94d0-4254-9292-6666b8e28204" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -268,12 +268,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:67885579-9ddc-4daa-b59e-d7348e9581d3" + "childCatenaXId": "urn:uuid:04b8c677-a058-4393-94c1-5c5a48a27535" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -285,12 +285,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:8fc21b03-1796-44af-bd52-c6998bfae1bb" + "childCatenaXId": "urn:uuid:36131844-36f1-426d-ba5d-a7ddcbb509d2" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -302,12 +302,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d3ab8367-7d12-4991-bd89-cea117a62297" + "childCatenaXId": "urn:uuid:309a2b1a-0061-4895-b587-f72b3d725f8f" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -319,12 +319,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:087372bf-e9f0-49e6-98e8-0ce98140605c" + "childCatenaXId": "urn:uuid:a5d13a5a-5d77-4e74-810f-a9332cc19665" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -336,12 +336,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f3f33eec-d7ed-44b5-8cf2-752b6c2c22ca" + "childCatenaXId": "urn:uuid:1e35e091-3d3d-421e-9c7e-14cf1c9442a6" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -353,12 +353,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ad1f1627-a57e-481f-9cff-10990674f486" + "childCatenaXId": "urn:uuid:66769f42-4905-424c-8f35-f072fab5a734" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -370,12 +370,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:643ff5cd-4468-4041-95d9-eeb2cc42c487" + "childCatenaXId": "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -387,12 +387,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:fbd019cc-6eda-4416-a668-e5d83271781d" + "childCatenaXId": "urn:uuid:ceb6b964-5779-49c1-b5e9-0ee70528fcbd" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -404,12 +404,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:00ce78e5-3bf3-4847-92c1-28771e83f998" + "childCatenaXId": "urn:uuid:7b87f5d6-f75e-40f1-a439-779ae9f57a21" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -421,12 +421,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:09c48e81-5c73-4e1a-85a2-0bf2fff4dada" + "childCatenaXId": "urn:uuid:9940dd40-a292-4a27-9733-08b1ca750149" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -438,12 +438,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e35161e7-803d-4746-9528-db9d9814c692" + "childCatenaXId": "urn:uuid:a1082992-cc3b-4da1-af6b-aa692ed71461" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -455,12 +455,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:5c48d1a1-bc81-4a9d-84db-53fc9c69e677" + "childCatenaXId": "urn:uuid:3e300930-0e1c-459c-8914-1ac631176716" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -472,12 +472,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:8c21d03f-b15e-427f-9cd0-c23701ed8f9c" + "childCatenaXId": "urn:uuid:8e916bb5-34cb-48cc-bb30-3dea756a25b0" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -489,12 +489,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:98484975-27ed-4c79-ad94-c82c2c0360e8" + "childCatenaXId": "urn:uuid:6c7bdfd8-7116-46da-b8e2-7322acd64042" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -506,12 +506,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e83c5a1f-7558-4978-990f-9c796224ce63" + "childCatenaXId": "urn:uuid:c4cd2818-b616-4a28-b327-7e7e449fbdae" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -523,12 +523,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b995cae9-0196-4ab5-b768-798eda1b5726" + "childCatenaXId": "urn:uuid:98c92d24-0d86-4dfa-97bb-1f67794fc9f9" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -540,12 +540,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:867a1fd9-6a8b-4f56-a5ef-2b61f12f8bce" + "childCatenaXId": "urn:uuid:e1ea599a-255d-4abf-a385-70f63cbe9794" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -557,12 +557,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a9d00358-d560-4a4b-98cc-d3a4d61c253b" + "childCatenaXId": "urn:uuid:cd55d855-754f-4a60-935a-88768f0ed2fb" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -574,12 +574,12 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d7d61cd8-27b2-4707-a4c2-d735cf1a0dcd" + "childCatenaXId": "urn:uuid:e0566a95-a34f-44e0-a562-f5db3367f7f3" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:50edf0fc-95a7-40b3-ad43-9156f3b81768", + "catenaXId": "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68", "linkedItem": { "quantity": { "quantityNumber": 1.0, @@ -591,32 +591,32 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ba9cdc50-eae0-49d7-bd5e-36711b3f57e6" + "childCatenaXId": "urn:uuid:393f7bf3-c73f-4b0d-86ee-f5be8aa338c4" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:9abcceb1-02ed-4384-83bb-e3f5b3be77d4", + "catenaXId": "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68", "linkedItem": { "quantity": { - "quantityNumber": 1.0, + "quantityNumber": 0.2341, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" + "lexicalValue": "unit:kilogram" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:68766b51-f794-4033-bcb1-f635ed309cd4" + "childCatenaXId": "urn:uuid:b86bfe10-6a4f-41be-8a00-6f11ce38702e" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:9abcceb1-02ed-4384-83bb-e3f5b3be77d4", + "catenaXId": "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68", "linkedItem": { "quantity": { - "quantityNumber": 0.2001, + "quantityNumber": 0.2014, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", "lexicalValue": "unit:kilogram" @@ -625,15 +625,15 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:68c9b1bf-b2c1-456a-883c-2aac5f5cb5f4" + "childCatenaXId": "urn:uuid:4b2b21d0-8fed-4d32-b262-f75c5b846df8" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:9abcceb1-02ed-4384-83bb-e3f5b3be77d4", + "catenaXId": "urn:uuid:393f7bf3-c73f-4b0d-86ee-f5be8aa338c4", "linkedItem": { "quantity": { - "quantityNumber": 0.3301, + "quantityNumber": 0.1908, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", "lexicalValue": "unit:kilogram" @@ -642,32 +642,32 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:816f9c8d-6ef1-439e-89de-ef1d34481c17" + "childCatenaXId": "urn:uuid:5eb6d06a-f873-4ada-9fac-8431ad5a600d" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:57ced45e-4f98-4aa4-bb67-6f7c51b90a4b", + "catenaXId": "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290", "linkedItem": { "quantity": { - "quantityNumber": 1.0, + "quantityNumber": 0.3301, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" + "lexicalValue": "unit:kilogram" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:133a0c0d-c5f1-4b2d-a5df-18765c55fba5" + "childCatenaXId": "urn:uuid:620b64c1-3505-4740-b64e-32da0f1b82e5" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:57ced45e-4f98-4aa4-bb67-6f7c51b90a4b", + "catenaXId": "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290", "linkedItem": { "quantity": { - "quantityNumber": 0.2014, + "quantityNumber": 0.2001, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", "lexicalValue": "unit:kilogram" @@ -676,77 +676,77 @@ "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:1ac0b95c-c8e1-49e3-842b-eae13822a7ce" + "childCatenaXId": "urn:uuid:a14aa6a4-5be6-45d2-8544-b179baeeed7d" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:57ced45e-4f98-4aa4-bb67-6f7c51b90a4b", + "catenaXId": "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290", "linkedItem": { "quantity": { - "quantityNumber": 0.2341, + "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2687fd84-825d-4923-b1ab-66b70f002929" + "childCatenaXId": "urn:uuid:0ea1aa79-10d4-4df1-8a5a-5b7eafd26163" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:f2e6d0cd-5a9a-451d-a583-510c5209f64c", + "catenaXId": "urn:uuid:0ea1aa79-10d4-4df1-8a5a-5b7eafd26163", "linkedItem": { "quantity": { - "quantityNumber": 1.0, + "quantityNumber": 0.1908, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" + "lexicalValue": "unit:kilogram" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:936e9f19-e777-4acb-881d-fe0ff722343b" + "childCatenaXId": "urn:uuid:1d312e57-7a0f-47c0-8586-5b5c890d0bcf" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:68766b51-f794-4033-bcb1-f635ed309cd4", + "catenaXId": "urn:uuid:ceb6b964-5779-49c1-b5e9-0ee70528fcbd", "linkedItem": { "quantity": { - "quantityNumber": 0.1908, + "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:edfe4b76-0be3-4934-8afd-ff9e7fb27aa0" + "childCatenaXId": "urn:uuid:a4a26b9c-9460-4cc5-8645-85916b86adb0" }, "aspectType": "AssemblyPartRelationship" }, { - "catenaXId": "urn:uuid:133a0c0d-c5f1-4b2d-a5df-18765c55fba5", + "catenaXId": "urn:uuid:3e300930-0e1c-459c-8914-1ac631176716", "linkedItem": { "quantity": { - "quantityNumber": 0.1908, + "quantityNumber": 1.0, "measurementUnit": { "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" + "lexicalValue": "unit:piece" } }, "lifecycleContext": "asBuilt", "assembledOn": "2022-02-03T14:48:54.709Z", "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a2e2913b-4007-4288-a1ca-4b2252fa70d3" + "childCatenaXId": "urn:uuid:8f9d8c7f-6d7a-48f1-9959-9fa3a1a7a891" }, "aspectType": "AssemblyPartRelationship" } ] -} +} \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-submodels.json b/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-submodels.json index 526d55e6f7..3e380850d5 100644 --- a/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-submodels.json +++ b/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-submodels.json @@ -1,2089 +1,1591 @@ -{ - "submodels": [ - { - "identification": "urn:uuid:8a8d2905-5c7e-463b-8b6f-e7fc4789064e", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "CW-84", - "key": "manufacturerPartId" - }, - { - "value": "OMAXALZZSKVQLDQYW", - "key": "partInstanceId" - }, - { - "value": "OMAXALZZSKVQLDQYW", - "key": "van" - } - ], - "manufacturingInformation": { - "date": "2016-04-27T02:35:20.000Z", - "country": "DEU" - }, - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", - "partTypeInformation": { - "manufacturerPartId": "CW-84", - "classification": "product", - "nameAtManufacturer": "Vehicle Combustion" +{ + "submodels" : [ { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:9519a9d4-b165-4154-a263-720054b6d3cf", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:f1f14335-bda1-4dea-8818-0a1042bef7af", - "childParts": [ - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:5c48d1a1-bc81-4a9d-84db-53fc9c69e677" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b32a9cda-b026-4715-b253-c08a7d11b840" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:7b2484b1-21b5-434a-aa2b-fd5434cc7ae3" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:67885579-9ddc-4daa-b59e-d7348e9581d3" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:50edf0fc-95a7-40b3-ad43-9156f3b81768" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f2e6d0cd-5a9a-451d-a583-510c5209f64c" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:09c48e81-5c73-4e1a-85a2-0bf2fff4dada" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6c2f4f41-3924-43da-969d-1afee232194c" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0391b219-9bf5-44cc-89af-e5db399a7d21" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:8c21d03f-b15e-427f-9cd0-c23701ed8f9c" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f3f33eec-d7ed-44b5-8cf2-752b6c2c22ca" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e35161e7-803d-4746-9528-db9d9814c692" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ad1f1627-a57e-481f-9cff-10990674f486" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ec215159-fae3-47d8-98c6-d67b7ffe7c0c" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:73477f4a-f49f-4306-b30f-3ab36ef72e6f" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:18f9d1ef-100e-4c0a-bb83-a407c644fcba" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:fbd019cc-6eda-4416-a668-e5d83271781d" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:98484975-27ed-4c79-ad94-c82c2c0360e8" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d7d61cd8-27b2-4707-a4c2-d735cf1a0dcd" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:868df1e0-b497-4059-a0d3-3899630020da" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b995cae9-0196-4ab5-b768-798eda1b5726" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:3940c819-dd95-422b-aa32-f7d3f1930de8" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:867a1fd9-6a8b-4f56-a5ef-2b61f12f8bce" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:643ff5cd-4468-4041-95d9-eeb2cc42c487" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:087372bf-e9f0-49e6-98e8-0ce98140605c" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:8fc21b03-1796-44af-bd52-c6998bfae1bb" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:8ae3c8a9-2c80-4223-a798-db94c854465b" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e83c5a1f-7558-4978-990f-9c796224ce63" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a9d00358-d560-4a4b-98cc-d3a4d61c253b" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d3ab8367-7d12-4991-bd89-cea117a62297" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ef4ef0e2-4658-464c-ad1e-eae5afb77942" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:00ce78e5-3bf3-4847-92c1-28771e83f998" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:57ced45e-4f98-4aa4-bb67-6f7c51b90a4b" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:9abcceb1-02ed-4384-83bb-e3f5b3be77d4" - } - ] - } - }, - { - "identification": "urn:uuid:d93c5f69-2f9e-4734-92ec-7c7d64a450d6", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "78744126-74", - "key": "manufacturerPartId" - }, - { - "value": "NO-577666297086581459258590", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:8ae3c8a9-2c80-4223-a798-db94c854465b", - "partTypeInformation": { - "manufacturerPartId": "78744126-74", - "customerPartId": "78744126-74", - "classification": "component", - "nameAtManufacturer": "Taillight front", - "nameAtCustomer": "Taillight front" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c4cd2818-b616-4a28-b327-7e7e449fbdae" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:bcf13b36-1be9-45ed-9135-1bef660d1b1b", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "65529521-37", - "key": "manufacturerPartId" - }, - { - "value": "NO-637839747432704841361574", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:73477f4a-f49f-4306-b30f-3ab36ef72e6f", - "partTypeInformation": { - "manufacturerPartId": "65529521-37", - "customerPartId": "65529521-37", - "classification": "component", - "nameAtManufacturer": "Exterior mirror left", - "nameAtCustomer": "Exterior mirror left" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e0566a95-a34f-44e0-a562-f5db3367f7f3" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:e2a2836f-e3ac-4d79-94a3-66d469627552", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "81324139-23", - "key": "manufacturerPartId" - }, - { - "value": "NO-234089394021291722206714", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:643ff5cd-4468-4041-95d9-eeb2cc42c487", - "partTypeInformation": { - "manufacturerPartId": "81324139-23", - "customerPartId": "81324139-23", - "classification": "component", - "nameAtManufacturer": "Alternator", - "nameAtCustomer": "Alternator" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b21cfd5b-dcf4-46fa-9227-3eb693567dd8" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:b10e20c7-bccf-4c7c-8ac2-61520f9b37e7", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "08901347-87", - "key": "manufacturerPartId" - }, - { - "value": "NO-698813188915827969458218", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:ef4ef0e2-4658-464c-ad1e-eae5afb77942", - "partTypeInformation": { - "manufacturerPartId": "08901347-87", - "customerPartId": "08901347-87", - "classification": "component", - "nameAtManufacturer": "Rims", - "nameAtCustomer": "Rims" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:7bbbc63f-ba86-4e1c-ad78-6bdb4a125783" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:1ce3bf6c-89e0-4e07-a453-d0369569ec7c", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "22768257-25", - "key": "manufacturerPartId" - }, - { - "value": "NO-182909772702645317572786", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:ec215159-fae3-47d8-98c6-d67b7ffe7c0c", - "partTypeInformation": { - "manufacturerPartId": "22768257-25", - "customerPartId": "22768257-25", - "classification": "component", - "nameAtManufacturer": "Bumper rear", - "nameAtCustomer": "Bumper rear" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3e300930-0e1c-459c-8914-1ac631176716" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:3f29aec6-9728-426a-9adb-68e123f9b2ad", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "09002013-68", - "key": "manufacturerPartId" - }, - { - "value": "NO-741711117019957866246192", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:fbd019cc-6eda-4416-a668-e5d83271781d", - "partTypeInformation": { - "manufacturerPartId": "09002013-68", - "customerPartId": "09002013-68", - "classification": "component", - "nameAtManufacturer": "Trailer coupling", - "nameAtCustomer": "Tailer coupling" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ceb6b964-5779-49c1-b5e9-0ee70528fcbd" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:23d15004-d7c0-4d3d-b24a-8d689b394e99", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "94421589-82", - "key": "manufacturerPartId" - }, - { - "value": "NO-090051782799791537084391", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:0391b219-9bf5-44cc-89af-e5db399a7d21", - "partTypeInformation": { - "manufacturerPartId": "94421589-82", - "customerPartId": "94421589-82", - "classification": "component", - "nameAtManufacturer": "Engine hood", - "nameAtCustomer": "Engine hood" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:badddd8a-0abf-4457-9d33-6eb05a3ac0ef" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:94f7e3c6-f7b3-4e08-a50b-47307f2da5a6", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "28673126-98", - "key": "manufacturerPartId" - }, - { - "value": "NO-521971425971587921853227", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:6c2f4f41-3924-43da-969d-1afee232194c", - "partTypeInformation": { - "manufacturerPartId": "28673126-98", - "customerPartId": "28673126-98", - "classification": "component", - "nameAtManufacturer": "Door r-r", - "nameAtCustomer": "Door rear-right" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:7b87f5d6-f75e-40f1-a439-779ae9f57a21" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:f32935bb-f142-477b-b058-c502f283ac93", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "67034319-44", - "key": "manufacturerPartId" - }, - { - "value": "NO-517977969951032933278547", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:7b2484b1-21b5-434a-aa2b-fd5434cc7ae3", - "partTypeInformation": { - "manufacturerPartId": "67034319-44", - "customerPartId": "67034319-44", - "classification": "component", - "nameAtManufacturer": "Turbocharger", - "nameAtCustomer": "Turbocharger" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8914a66e-b59b-405f-afff-b97d71ebece3" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:75741dc8-c99b-49af-b0f4-c917e50a6e3f", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "58471477-24", - "key": "manufacturerPartId" - }, - { - "value": "NO-653368825144313419172899", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:18f9d1ef-100e-4c0a-bb83-a407c644fcba", - "partTypeInformation": { - "manufacturerPartId": "58471477-24", - "customerPartId": "58471477-24", - "classification": "component", - "nameAtManufacturer": "Exterior mirror right", - "nameAtCustomer": "Exterior mirror right" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a1082992-cc3b-4da1-af6b-aa692ed71461" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:44d5b6d6-f486-4b13-aa1e-dbf89da8776e", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "20125432-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-263034085930445959442824", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:868df1e0-b497-4059-a0d3-3899630020da", - "partTypeInformation": { - "manufacturerPartId": "20125432-59", - "customerPartId": "20125432-59", - "classification": "component", - "nameAtManufacturer": "Indicator left", - "nameAtCustomer": "Indicator left" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1e35e091-3d3d-421e-9c7e-14cf1c9442a6" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:01f26b8b-7c15-4955-8bc9-5288f5e8de3d", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "73849201-61", - "key": "manufacturerPartId" - }, - { - "value": "NO-699623586834062230296181", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:67885579-9ddc-4daa-b59e-d7348e9581d3", - "partTypeInformation": { - "manufacturerPartId": "73849201-61", - "customerPartId": "73849201-61", - "classification": "component", - "nameAtManufacturer": "Catalysator", - "nameAtCustomer": "Catalysator" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:cc8e9448-b294-46e7-8110-337e8bfa3001" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:a619db8c-ed95-41c6-9e43-d136f9604837", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "45415162-57", - "key": "manufacturerPartId" - }, - { - "value": "NO-085197958619364691310676", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:3940c819-dd95-422b-aa32-f7d3f1930de8", - "partTypeInformation": { - "manufacturerPartId": "45415162-57", - "customerPartId": "45415162-57", - "classification": "component", - "nameAtManufacturer": "Led headlight", - "nameAtCustomer": "Led headlight" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:fa5804f1-8d4e-437c-aca2-a5491be61758" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:aa3e948a-171a-4982-af23-846c915ad5df", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "61184040-23", - "key": "manufacturerPartId" - }, - { - "value": "NO-031797809646836273892252", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:8fc21b03-1796-44af-bd52-c6998bfae1bb", - "partTypeInformation": { - "manufacturerPartId": "61184040-23", - "customerPartId": "61184040-23", - "classification": "component", - "nameAtManufacturer": "Taillight rear", - "nameAtCustomer": "Taillight rear" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a0f6803c-e4dc-4cda-8ad2-91cc57868449" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:ffafe010-e974-429d-bbdd-5d10d3757504", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "00871379-44", - "key": "manufacturerPartId" - }, - { - "value": "NO-446614016547833512657672", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:d3ab8367-7d12-4991-bd89-cea117a62297", - "partTypeInformation": { - "manufacturerPartId": "00871379-44", - "customerPartId": "00871379-44", - "classification": "component", - "nameAtManufacturer": "Chassis", - "nameAtCustomer": "Chassis" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:492781f5-62ff-4fb2-876c-3498e2844d13" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:8b764b2a-267c-4250-aed1-6c7907e5a840", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "13769860-47", - "key": "manufacturerPartId" - }, - { - "value": "NO-825143168313832059901794", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:f3f33eec-d7ed-44b5-8cf2-752b6c2c22ca", - "partTypeInformation": { - "manufacturerPartId": "13769860-47", - "customerPartId": "13769860-47", - "classification": "component", - "nameAtManufacturer": "Fender left", - "nameAtCustomer": "Fender right" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6c7bdfd8-7116-46da-b8e2-7322acd64042" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:eaf5c9ef-f1f4-4fca-9a86-2adcec065351", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "45863316-60", - "key": "manufacturerPartId" - }, - { - "value": "NO-383688996769055538071023", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:00ce78e5-3bf3-4847-92c1-28771e83f998", - "partTypeInformation": { - "manufacturerPartId": "45863316-60", - "customerPartId": "45863316-60", - "classification": "component", - "nameAtManufacturer": "Tires", - "nameAtCustomer": "Tires" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d6142601-5e09-45fe-9b42-e53cf8cd458c" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:d4a3006c-d184-45ab-9bb7-9cbf8bcbc168", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "36643162-35", - "key": "manufacturerPartId" - }, - { - "value": "NO-531750159545557912983689", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:e35161e7-803d-4746-9528-db9d9814c692", - "partTypeInformation": { - "manufacturerPartId": "36643162-35", - "customerPartId": "36643162-35", - "classification": "component", - "nameAtManufacturer": "Fender right", - "nameAtCustomer": "Fender right" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8eb9285f-5b10-4d5a-af7e-44e7fb0520f1" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:4a838123-bcaf-4254-92d7-d7a77a244e50", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "32494586-73", - "key": "manufacturerPartId" - }, - { - "value": "NO-864558822157392253912002", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:b32a9cda-b026-4715-b253-c08a7d11b840", - "partTypeInformation": { - "manufacturerPartId": "32494586-73", - "customerPartId": "32494586-73", - "classification": "component", - "nameAtManufacturer": "Differential Gear", - "nameAtCustomer": "Differential Gear" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:36131844-36f1-426d-ba5d-a7ddcbb509d2" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:01e294f6-0fcc-4c34-a642-699c39833cf1", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "78141846-87", - "key": "manufacturerPartId" - }, - { - "value": "NO-308048468179502884344759", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:867a1fd9-6a8b-4f56-a5ef-2b61f12f8bce", - "partTypeInformation": { - "manufacturerPartId": "78141846-87", - "customerPartId": "78141846-87", - "classification": "component", - "nameAtManufacturer": "Starter motor", - "nameAtCustomer": "Starter motor" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:04b8c677-a058-4393-94c1-5c5a48a27535" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:2129f968-8112-4cb3-afca-5c18fee7d7be", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "57929013-09", - "key": "manufacturerPartId" - }, - { - "value": "NO-990379220039630047372226", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:087372bf-e9f0-49e6-98e8-0ce98140605c", - "partTypeInformation": { - "manufacturerPartId": "57929013-09", - "customerPartId": "57929013-09", - "classification": "component", - "nameAtManufacturer": "AC compressor", - "nameAtCustomer": "Air conditioning compressor" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ae2ad2b8-ed83-42b8-9953-3d37e224b3d7" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:b161b01e-407a-49e0-9376-7fd4536105f3", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "10030939-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-498815506813804675206852", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:5c48d1a1-bc81-4a9d-84db-53fc9c69e677", - "partTypeInformation": { - "manufacturerPartId": "10030939-59", - "customerPartId": "10030939-59", - "classification": "component", - "nameAtManufacturer": "Engine", - "nameAtCustomer": "Engine" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e1ea599a-255d-4abf-a385-70f63cbe9794" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:9690df69-1218-48e6-adbc-42162c903aa3", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "54165444-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-515224917844344882891590", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:ad1f1627-a57e-481f-9cff-10990674f486", - "partTypeInformation": { - "manufacturerPartId": "54165444-59", - "customerPartId": "54165444-59", - "classification": "component", - "nameAtManufacturer": "Bumper front", - "nameAtCustomer": "Bumper front" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:66769f42-4905-424c-8f35-f072fab5a734" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:390f4be6-784d-4eac-be31-b7ff09abecb3", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "43501996-98", - "key": "manufacturerPartId" - }, - { - "value": "NO-775119044565305680099730", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:98484975-27ed-4c79-ad94-c82c2c0360e8", - "partTypeInformation": { - "manufacturerPartId": "43501996-98", - "customerPartId": "43501996-98", - "classification": "component", - "nameAtManufacturer": "Dashboard", - "nameAtCustomer": "Dashboard" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:309a2b1a-0061-4895-b587-f72b3d725f8f" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:79212ba0-2b62-4001-9486-83af09f857c6", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "15635759-16", - "key": "manufacturerPartId" - }, - { - "value": "NO-357763365151675109323378", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:09c48e81-5c73-4e1a-85a2-0bf2fff4dada", - "partTypeInformation": { - "manufacturerPartId": "15635759-16", - "customerPartId": "15635759-16", - "classification": "component", - "nameAtManufacturer": "Door r-l", - "nameAtCustomer": "Door rear-left" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a5d13a5a-5d77-4e74-810f-a9332cc19665" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:aaf75266-2b6d-4763-a373-1a8b3bbdf1fb", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "19073706-76", - "key": "manufacturerPartId" - }, - { - "value": "NO-704843739978034957603374", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:b995cae9-0196-4ab5-b768-798eda1b5726", - "partTypeInformation": { - "manufacturerPartId": "19073706-76", - "customerPartId": "19073706-76", - "classification": "component", - "nameAtManufacturer": "Indicator right", - "nameAtCustomer": "Indicator right" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:cd55d855-754f-4a60-935a-88768f0ed2fb" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:91255514-1d50-484f-8d73-4ac3168b5a92", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "85023955-75", - "key": "manufacturerPartId" - }, - { - "value": "NO-623352977854691316219658", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:8c21d03f-b15e-427f-9cd0-c23701ed8f9c", - "partTypeInformation": { - "manufacturerPartId": "85023955-75", - "customerPartId": "85023955-75", - "classification": "component", - "nameAtManufacturer": "Tailgate", - "nameAtCustomer": "Tailgate" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5371bcac-94d0-4254-9292-6666b8e28204" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:94d285bd-01ac-4a4f-9070-e8f5ec25aaab", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "88111709-49", - "key": "manufacturerPartId" - }, - { - "value": "NO-679687669439872282538739", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:a9d00358-d560-4a4b-98cc-d3a4d61c253b", - "partTypeInformation": { - "manufacturerPartId": "88111709-49", - "customerPartId": "88111709-49", - "classification": "component", - "nameAtManufacturer": "Axle part rear", - "nameAtCustomer": "Axle part rear" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9940dd40-a292-4a27-9733-08b1ca750149" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:a24f8224-555a-4f50-81c7-793c6a629e89", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "12093297-03", - "key": "manufacturerPartId" - }, - { - "value": "NO-619372392092235773470630", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:e83c5a1f-7558-4978-990f-9c796224ce63", - "partTypeInformation": { - "manufacturerPartId": "12093297-03", - "customerPartId": "12093297-03", - "classification": "component", - "nameAtManufacturer": "Axle part front", - "nameAtCustomer": "Axle part front" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5fd291cf-e8df-4a46-8a8d-5054dbc3d1bf" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:ffce4310-9dae-486b-abd0-137d1a78d155", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AYRE", - "key": "manufacturerId" - }, - { - "value": "77795937-13", - "key": "manufacturerPartId" - }, - { - "value": "NO-940456958374895706746333", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:d7d61cd8-27b2-4707-a4c2-d735cf1a0dcd", - "partTypeInformation": { - "manufacturerPartId": "77795937-13", - "customerPartId": "77795937-13", - "classification": "component", - "nameAtManufacturer": "Steering wheel", - "nameAtCustomer": "Steering wheel" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8e916bb5-34cb-48cc-bb30-3dea756a25b0" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:83a08add-1096-46b6-937e-380fdec415cf", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003CSGV", - "key": "manufacturerId" - }, - { - "value": "22782277-50", - "key": "manufacturerPartId" - }, - { - "value": "NO-456254855447445013274141", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:50edf0fc-95a7-40b3-ad43-9156f3b81768", - "partTypeInformation": { - "manufacturerPartId": "22782277-50", - "customerPartId": "22782277-50", - "classification": "component", - "nameAtManufacturer": "Door f-l", - "nameAtCustomer": "Door front-left" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:03556cd3-ae2a-48ad-a6a4-89631f8d41c8" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:98c92d24-0d86-4dfa-97bb-1f67794fc9f9" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "XW-63", + "key" : "manufacturerPartId" + }, { + "value" : "OMAPUHRUUEFIUYLEE", + "key" : "partInstanceId" + }, { + "value" : "OMAPUHRUUEFIUYLEE", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2013-10-09T17:39:34.000Z", + "country" : "DEU" }, - { - "identification": "urn:uuid:082daf23-e7d2-462f-9d56-d42afd0e5446", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:50edf0fc-95a7-40b3-ad43-9156f3b81768", - "childParts": [ - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ba9cdc50-eae0-49d7-bd5e-36711b3f57e6" - } - ] - } + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "partTypeInformation" : { + "manufacturerPartId" : "XW-63", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Combustion" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-080214184948140272203787", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:c174c650-a78a-4a3e-84b2-127c452e2fda", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B5MJ", - "key": "manufacturerId" - }, - { - "value": "62986Q6-51", - "key": "manufacturerPartId" - }, - { - "value": "NO-642718300945788010337776", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:9abcceb1-02ed-4384-83bb-e3f5b3be77d4", - "partTypeInformation": { - "manufacturerPartId": "62986Q6-51", - "customerPartId": "62986Q6-51", - "classification": "component", - "nameAtManufacturer": "ECU", - "nameAtCustomer": "ECU" - } - } + "catenaXId" : "urn:uuid:03556cd3-ae2a-48ad-a6a4-89631f8d41c8", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-443137672890588964185377", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:de0cbf21-6116-42a3-aa42-b27c0104888f", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:9abcceb1-02ed-4384-83bb-e3f5b3be77d4", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.3301", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:816f9c8d-6ef1-439e-89de-ef1d34481c17" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:68766b51-f794-4033-bcb1-f635ed309cd4" - }, - { - "quantity": { - "quantityNumber": "0.2001", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:68c9b1bf-b2c1-456a-883c-2aac5f5cb5f4" - } - ] - } + "catenaXId" : "urn:uuid:d6142601-5e09-45fe-9b42-e53cf8cd458c", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-776024652978438241566808", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:0ff02ce5-e8f0-4842-8e34-254da0a372cc", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B2OM", - "key": "manufacturerId" - }, - { - "value": "1O222E8-43", - "key": "manufacturerPartId" - }, - { - "value": "NO-262893229514686288047560", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:57ced45e-4f98-4aa4-bb67-6f7c51b90a4b", - "partTypeInformation": { - "manufacturerPartId": "1O222E8-43", - "customerPartId": "1O222E8-43", - "classification": "component", - "nameAtManufacturer": "Transmission", - "nameAtCustomer": "Transmission" - } - } + "catenaXId" : "urn:uuid:5fd291cf-e8df-4a46-8a8d-5054dbc3d1bf", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-706618611841126090384630", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:4a626d30-f66a-498c-ad70-b8b14f520fff", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:57ced45e-4f98-4aa4-bb67-6f7c51b90a4b", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.2014", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:1ac0b95c-c8e1-49e3-842b-eae13822a7ce" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:133a0c0d-c5f1-4b2d-a5df-18765c55fba5" - }, - { - "quantity": { - "quantityNumber": "0.2341", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2687fd84-825d-4923-b1ab-66b70f002929" - } - ] - } + "catenaXId" : "urn:uuid:b21cfd5b-dcf4-46fa-9227-3eb693567dd8", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-161982682066926378535434", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:6096805c-9ea8-449d-9310-e786627639ed", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:f2e6d0cd-5a9a-451d-a583-510c5209f64c", - "childParts": [ - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:936e9f19-e777-4acb-881d-fe0ff722343b" - } - ] - } + "catenaXId" : "urn:uuid:ae2ad2b8-ed83-42b8-9953-3d37e224b3d7", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-378492193712566489933252", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:eb333d66-f7b3-479d-9c01-95552f99c21d", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003CSGV", - "key": "manufacturerId" - }, - { - "value": "95657362-64", - "key": "manufacturerPartId" - }, - { - "value": "NO-119744543834558117845033", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:f2e6d0cd-5a9a-451d-a583-510c5209f64c", - "partTypeInformation": { - "manufacturerPartId": "33740332-54", - "customerPartId": "33740332-54", - "classification": "component", - "nameAtManufacturer": "Door f-r", - "nameAtCustomer": "Door front-right" - } - } + "catenaXId" : "urn:uuid:492781f5-62ff-4fb2-876c-3498e2844d13", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-835063135617554718341543", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:782c7bed-d065-4eaf-968c-8732b17eb33b", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000000BJTL", - "key": "manufacturerId" - }, - { - "value": "95657762-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-577952218857170015504125", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:ba9cdc50-eae0-49d7-bd5e-36711b3f57e6", - "partTypeInformation": { - "manufacturerPartId": "95657762-59", - "customerPartId": "95657762-59", - "classification": "component", - "nameAtManufacturer": "Door Key", - "nameAtCustomer": "Door Key" + "catenaXId" : "urn:uuid:cc8e9448-b294-46e7-8110-337e8bfa3001", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + }, { + "catenaXId" : "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.2014", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" } - } - }, - { - "identification": "urn:uuid:e9a78604-4336-477c-8ce0-18dfa6dbd4e6", - "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AXS3", - "key": "manufacturerId" - }, - { - "value": "33906S3-94", - "key": "manufacturerPartId" - }, - { - "value": "NO-583510554514808021817274", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:816f9c8d-6ef1-439e-89de-ef1d34481c17", - "partTypeInformation": { - "manufacturerPartId": "33906S3-94", - "customerPartId": "33906S3-94", - "classification": "component", - "nameAtManufacturer": "Glue", - "nameAtCustomer": "Glue" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4b2b21d0-8fed-4d32-b262-f75c5b846df8" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } - }, - { - "identification": "urn:uuid:b10b0e1d-3c5d-400e-a04f-bf134e64e17a", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "38943H3-54", - "key": "manufacturerPartId" - }, - { - "value": "NO-580235297153817773797719", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:68c9b1bf-b2c1-456a-883c-2aac5f5cb5f4", - "partTypeInformation": { - "manufacturerPartId": "38943H3-54", - "customerPartId": "38943H3-54", - "classification": "component", - "nameAtManufacturer": "Engineering Plastics", - "nameAtCustomer": "Engineering Plastics" + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:393f7bf3-c73f-4b0d-86ee-f5be8aa338c4" + }, { + "quantity" : { + "quantityNumber" : "0.2341", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" } - } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b86bfe10-6a4f-41be-8a00-6f11ce38702e" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-712627233731926672258402", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:92657e85-0800-4c02-bcf2-ba1e09bf856c", - "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "31487X6-88", - "key": "manufacturerPartId" - }, - { - "value": "NO-952052680031837154964801", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:1ac0b95c-c8e1-49e3-842b-eae13822a7ce", - "partTypeInformation": { - "manufacturerPartId": "31487X6-88", - "customerPartId": "31487X6-88", - "classification": "component", - "nameAtManufacturer": "Engineering Plastics", - "nameAtCustomer": "Engineering Plastics" + "catenaXId" : "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + }, { + "catenaXId" : "urn:uuid:393f7bf3-c73f-4b0d-86ee-f5be8aa338c4", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" } - } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5eb6d06a-f873-4ada-9fac-8431ad5a600d" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "91908V9-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-272166193349674685284302", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:f60afb32-240e-4369-bf20-054335c0ef5d", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000000BJTL", - "key": "manufacturerId" - }, - { - "value": "95657762-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-139466304855242643447025", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:936e9f19-e777-4acb-881d-fe0ff722343b", - "partTypeInformation": { - "manufacturerPartId": "95657762-59", - "customerPartId": "95657762-59", - "classification": "component", - "nameAtManufacturer": "Door Key", - "nameAtCustomer": "Door Key" - } - } + "catenaXId" : "urn:uuid:393f7bf3-c73f-4b0d-86ee-f5be8aa338c4", + "partTypeInformation" : { + "manufacturerPartId" : "91908V9-48", + "customerPartId" : "91908V9-48", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "08243L1-15", + "key" : "manufacturerPartId" + }, { + "value" : "NO-357088932832875081865069", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:c1c189d4-c1af-42ad-8e15-a7ed836b4aa7", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B3NX", - "key": "manufacturerId" - }, - { - "value": "80833J7-99", - "key": "manufacturerPartId" - }, - { - "value": "NO-171010696449453874507690", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:68766b51-f794-4033-bcb1-f635ed309cd4", - "partTypeInformation": { - "manufacturerPartId": "80833J7-99", - "customerPartId": "80833J7-99", - "classification": "component", - "nameAtManufacturer": "Sensor", - "nameAtCustomer": "Sensor" - } - } + "catenaXId" : "urn:uuid:5eb6d06a-f873-4ada-9fac-8431ad5a600d", + "partTypeInformation" : { + "manufacturerPartId" : "08243L1-15", + "customerPartId" : "08243L1-15", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } + }, { + "catenaXId" : "urn:uuid:b86bfe10-6a4f-41be-8a00-6f11ce38702e", + "childParts" : [ ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "87729C4-85", + "key" : "manufacturerPartId" + }, { + "value" : "NO-779736395462962938391822", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b86bfe10-6a4f-41be-8a00-6f11ce38702e", + "partTypeInformation" : { + "manufacturerPartId" : "87729C4-85", + "customerPartId" : "87729C4-85", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "35360R3-90", + "key" : "manufacturerPartId" + }, { + "value" : "NO-989414344642730064939021", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4b2b21d0-8fed-4d32-b262-f75c5b846df8", + "partTypeInformation" : { + "manufacturerPartId" : "35360R3-90", + "customerPartId" : "35360R3-90", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-463859804701536440600568", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fa5804f1-8d4e-437c-aca2-a5491be61758", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-138020556239094892557660", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:badddd8a-0abf-4457-9d33-6eb05a3ac0ef", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-372590292378965503190624", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8eb9285f-5b10-4d5a-af7e-44e7fb0520f1", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-085985814115682170912173", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7bbbc63f-ba86-4e1c-ad78-6bdb4a125783", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-515996863347176959678004", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:6c99f3cf-2de8-492b-b3d2-a36e072b575d", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:68766b51-f794-4033-bcb1-f635ed309cd4", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.1908", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:edfe4b76-0be3-4934-8afd-ff9e7fb27aa0" - } - ] - } + "catenaXId" : "urn:uuid:8914a66e-b59b-405f-afff-b97d71ebece3", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-611495301031917154471195", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:1141a53c-7bff-46c6-8890-7e2c2e69c2e9", - "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003AXS3", - "key": "manufacturerId" - }, - { - "value": "15006Y8-35", - "key": "manufacturerPartId" - }, - { - "value": "NO-330952488764194522460674", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:2687fd84-825d-4923-b1ab-66b70f002929", - "partTypeInformation": { - "manufacturerPartId": "15006Y8-35", - "customerPartId": "15006Y8-35", - "classification": "component", - "nameAtManufacturer": "Glue", - "nameAtCustomer": "Glue" + "catenaXId" : "urn:uuid:a0f6803c-e4dc-4cda-8ad2-91cc57868449", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-517537872389552545347888", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5371bcac-94d0-4254-9292-6666b8e28204", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-931977840620838441099091", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:04b8c677-a058-4393-94c1-5c5a48a27535", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-674300653336015182672214", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:36131844-36f1-426d-ba5d-a7ddcbb509d2", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-955637294337029656930454", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:309a2b1a-0061-4895-b587-f72b3d725f8f", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-436417650688886724541288", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a5d13a5a-5d77-4e74-810f-a9332cc19665", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-533124274497426817522463", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1e35e091-3d3d-421e-9c7e-14cf1c9442a6", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-760041300451903722626084", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:66769f42-4905-424c-8f35-f072fab5a734", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + }, { + "catenaXId" : "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.3301", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:620b64c1-3505-4740-b64e-32da0f1b82e5" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:0ea1aa79-10d4-4df1-8a5a-5b7eafd26163" + }, { + "quantity" : { + "quantityNumber" : "0.2001", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a14aa6a4-5be6-45d2-8544-b179baeeed7d" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "51130B5-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-210051382387574747995315", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:a6bb007f-bc16-4cc1-9ca2-218da8359879", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:2687fd84-825d-4923-b1ab-66b70f002929", - "childParts": [] - } + "catenaXId" : "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290", + "partTypeInformation" : { + "manufacturerPartId" : "51130B5-76", + "customerPartId" : "51130B5-76", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "28658K3-56", + "key" : "manufacturerPartId" + }, { + "value" : "NO-690455882011624333983284", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:eac8cf6b-ccd1-4b48-a6b6-0be69fc408fb", - "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "39625J5-78", - "key": "manufacturerPartId" - }, - { - "value": "NO-114476806681821604664171", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:edfe4b76-0be3-4934-8afd-ff9e7fb27aa0", - "partTypeInformation": { - "manufacturerPartId": "39625J5-78", - "customerPartId": "39625J5-78", - "classification": "component", - "nameAtManufacturer": "Engineering Plastics", - "nameAtCustomer": "Engineering Plastics" + "catenaXId" : "urn:uuid:620b64c1-3505-4740-b64e-32da0f1b82e5", + "partTypeInformation" : { + "manufacturerPartId" : "28658K3-56", + "customerPartId" : "28658K3-56", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "81235G4-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-912190603976514843251930", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a14aa6a4-5be6-45d2-8544-b179baeeed7d", + "partTypeInformation" : { + "manufacturerPartId" : "81235G4-75", + "customerPartId" : "81235G4-75", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + }, { + "catenaXId" : "urn:uuid:0ea1aa79-10d4-4df1-8a5a-5b7eafd26163", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" } - } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1d312e57-7a0f-47c0-8586-5b5c890d0bcf" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "34098S7-11", + "key" : "manufacturerPartId" + }, { + "value" : "NO-492327580217667430451578", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:058e08e7-063a-417b-bed9-75f1f77d70e0", - "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", - "payload": { - "catenaXId": "urn:uuid:133a0c0d-c5f1-4b2d-a5df-18765c55fba5", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.1908", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a2e2913b-4007-4288-a1ca-4b2252fa70d3" - } - ] - } + "catenaXId" : "urn:uuid:0ea1aa79-10d4-4df1-8a5a-5b7eafd26163", + "partTypeInformation" : { + "manufacturerPartId" : "34098S7-11", + "customerPartId" : "34098S7-11", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "78393J3-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-259583605850965985909486", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:905278cf-dcf5-4d51-a6a6-1e17923bd32d", - "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B3NX", - "key": "manufacturerId" - }, - { - "value": "28233H8-84", - "key": "manufacturerPartId" - }, - { - "value": "NO-857014921113068684287663", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:133a0c0d-c5f1-4b2d-a5df-18765c55fba5", - "partTypeInformation": { - "manufacturerPartId": "28233H8-84", - "customerPartId": "28233H8-84", - "classification": "component", - "nameAtManufacturer": "Sensor", - "nameAtCustomer": "Sensor" + "catenaXId" : "urn:uuid:1d312e57-7a0f-47c0-8586-5b5c890d0bcf", + "partTypeInformation" : { + "manufacturerPartId" : "78393J3-74", + "customerPartId" : "78393J3-74", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + }, { + "catenaXId" : "urn:uuid:ceb6b964-5779-49c1-b5e9-0ee70528fcbd", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a4a26b9c-9460-4cc5-8645-85916b86adb0" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-297452866581906730261974", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ceb6b964-5779-49c1-b5e9-0ee70528fcbd", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-146729557079961289905282", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a4a26b9c-9460-4cc5-8645-85916b86adb0", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-625635229566122009930947", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7b87f5d6-f75e-40f1-a439-779ae9f57a21", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-379150999339751935779974", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9940dd40-a292-4a27-9733-08b1ca750149", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-947622490362370933766973", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - { - "identification": "urn:uuid:24598808-94e6-4d80-a86f-b114fd316b80", - "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", - "payload": { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "69920P8-40", - "key": "manufacturerPartId" - }, - { - "value": "NO-763910304925769506397105", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" - }, - "catenaXId": "urn:uuid:a2e2913b-4007-4288-a1ca-4b2252fa70d3", - "partTypeInformation": { - "manufacturerPartId": "69920P8-40", - "customerPartId": "69920P8-40", - "classification": "component", - "nameAtManufacturer": "NTIER Product", - "nameAtCustomer": "NTIER Product" + "catenaXId" : "urn:uuid:a1082992-cc3b-4da1-af6b-aa692ed71461", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + }, { + "catenaXId" : "urn:uuid:3e300930-0e1c-459c-8914-1ac631176716", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" } - } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8f9d8c7f-6d7a-48f1-9959-9fa3a1a7a891" + } ] + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-066856325264319536740496", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3e300930-0e1c-459c-8914-1ac631176716", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-175671273535589941197943", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8f9d8c7f-6d7a-48f1-9959-9fa3a1a7a891", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-732656251619472638970521", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8e916bb5-34cb-48cc-bb30-3dea756a25b0", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-552006940575520649122391", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6c7bdfd8-7116-46da-b8e2-7322acd64042", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-692153553533989280372178", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c4cd2818-b616-4a28-b327-7e7e449fbdae", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-270108677396418821910638", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:98c92d24-0d86-4dfa-97bb-1f67794fc9f9", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-919753113770584725248439", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e1ea599a-255d-4abf-a385-70f63cbe9794", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-162235183519918615040507", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cd55d855-754f-4a60-935a-88768f0ed2fb", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + }, { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-142999510701784902291319", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e0566a95-a34f-44e0-a562-f5db3367f7f3", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" } - ] -} + } ] +} \ No newline at end of file From 813539454fea7e82a157cacc3a4bfabce6bf29cd Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Wed, 14 Dec 2022 09:05:19 +0100 Subject: [PATCH 10/62] fix(irs-api):[TRI-559] Add sleep to simulate job processing --- .../irs/services/IrsItemGraphQueryServiceSpringBootTest.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 4c42cf59fe..cae5d83df5 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 @@ -150,7 +150,7 @@ void registerJobWithDepthShouldBuildTreeUntilGivenDepth() { } @Test - void cancelJobById() { + void cancelJobById() throws InterruptedException { final String idAsString = String.valueOf(jobId); final MultiTransferJob multiTransferJob = MultiTransferJob.builder() .job(Job.builder() @@ -167,6 +167,9 @@ void cancelJobById() { jobStore.create(multiTransferJob); + // Simulate job processing + Thread.sleep(5); + assertThat(service.cancelJobById(jobId)).isNotNull(); final Optional fetchedJob = jobStore.find(idAsString); From 3ec7afe8b7d643d6d44ca61b520b60474ff55543 Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Wed, 14 Dec 2022 14:15:20 +0100 Subject: [PATCH 11/62] feat(fix):[TRI-1002] - upward direction should get parents, instead childs for further processing --- .../job/delegate/RelationshipDelegate.java | 24 +++++++-- ...RS_DEMO Collection.postman_collection.json | 53 +++++++++++++++++-- 2 files changed, 67 insertions(+), 10 deletions(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/RelationshipDelegate.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/RelationshipDelegate.java index 3a5bf016c2..c5c3e5a571 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/RelationshipDelegate.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/RelationshipDelegate.java @@ -27,8 +27,6 @@ import lombok.extern.slf4j.Slf4j; import org.eclipse.tractusx.irs.aaswrapper.job.AASTransferProcess; import org.eclipse.tractusx.irs.aaswrapper.job.ItemContainer; -import org.eclipse.tractusx.irs.edc.EdcSubmodelFacade; -import org.eclipse.tractusx.irs.edc.RelationshipAspect; import org.eclipse.tractusx.irs.component.GlobalAssetIdentification; import org.eclipse.tractusx.irs.component.JobParameter; import org.eclipse.tractusx.irs.component.LinkedItem; @@ -36,6 +34,8 @@ import org.eclipse.tractusx.irs.component.Tombstone; import org.eclipse.tractusx.irs.component.enums.AspectType; import org.eclipse.tractusx.irs.component.enums.ProcessStep; +import org.eclipse.tractusx.irs.edc.EdcSubmodelFacade; +import org.eclipse.tractusx.irs.edc.RelationshipAspect; import org.eclipse.tractusx.irs.exceptions.EdcClientException; import org.eclipse.tractusx.irs.exceptions.JsonParseException; @@ -64,11 +64,11 @@ public ItemContainer process(final ItemContainer.ItemContainerBuilder itemContai shell -> shell.findRelationshipEndpointAddresses(AspectType.fromValue(relationshipAspect.name())).forEach(address -> { try { final List relationships = submodelFacade.getRelationships(address, relationshipAspect); - final List childIds = getChildIds(relationships); + final List idsToProcess = getIdsToProcess(relationships, relationshipAspect); - log.info("Processing Relationships with {} children", childIds.size()); + log.info("Processing Relationships with {} items", idsToProcess.size()); - aasTransferProcess.addIdsToProcess(childIds); + aasTransferProcess.addIdsToProcess(idsToProcess); itemContainerBuilder.relationships(relationships); } catch (final EdcClientException e) { log.info("Submodel Endpoint could not be retrieved for Endpoint: {}. Creating Tombstone.", @@ -84,6 +84,20 @@ public ItemContainer process(final ItemContainer.ItemContainerBuilder itemContai return next(itemContainerBuilder, jobData, aasTransferProcess, itemId); } + private List getIdsToProcess(final List relationships, final RelationshipAspect relationshipAspect) { + return switch (relationshipAspect) { + case AssemblyPartRelationship, SingleLevelBomAsPlanned -> getChildIds(relationships); + case SingleLevelUsageAsBuilt -> getParentIds(relationships); + }; + } + + private List getParentIds(final List relationships) { + return relationships.stream() + .map(Relationship::getCatenaXId) + .map(GlobalAssetIdentification::getGlobalAssetId) + .collect(Collectors.toList()); + } + private List getChildIds(final List relationships) { return relationships.stream() .map(Relationship::getLinkedItem) diff --git a/testing/IRS_DEMO Collection.postman_collection.json b/testing/IRS_DEMO Collection.postman_collection.json index ccc2f7588e..5bde13953e 100644 --- a/testing/IRS_DEMO Collection.postman_collection.json +++ b/testing/IRS_DEMO Collection.postman_collection.json @@ -1,9 +1,8 @@ { "info": { - "_postman_id": "dd300b73-1ad8-41b8-b62c-b2b68ad9f302", + "_postman_id": "b0df63d8-b1eb-4924-95c3-038cdf7408d2", "name": "IRS DEMO Collection", - "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", - "_exporter_id": "19870399" + "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" }, "item": [ { @@ -610,7 +609,7 @@ "response": [] }, { - "name": "1.3.4 [Register Job with aspect SerialPartTypization and AddressAspect ] https://${environment}/irs/jobs", + "name": "1.3.4 [Register Job with aspect SerialPartTypization and AddressAspect] https://${environment}/irs/jobs", "event": [ { "listen": "prerequest", @@ -654,7 +653,7 @@ "response": [] }, { - "name": "1.3.5 [Register Job with aspect PartAsPlanned ] https://${environment}/irs/jobs", + "name": "1.3.5 [Register Job with aspect PartAsPlanned] https://${environment}/irs/jobs", "event": [ { "listen": "prerequest", @@ -697,6 +696,50 @@ }, "response": [] }, + { + "name": "1.3.6 [Register Job with upward direction] https://${environment}/irs/jobs", + "event": [ + { + "listen": "prerequest", + "script": { + "exec": [ + "" + ], + "type": "text/javascript" + } + } + ], + "request": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/json", + "type": "text" + }, + { + "key": "Authorization", + "value": "Bearer {{ACCESS_TOKEN}}", + "type": "default" + } + ], + "body": { + "mode": "raw", + "raw": "{\r\n \"globalAssetId\": \"urn:uuid:6d9be5cc-6eff-47f8-bcc6-f6c639c932cf\", \r\n \"direction\": \"upward\"\r\n}" + }, + "url": { + "raw": "{{IRS_HOST}}/irs/jobs", + "host": [ + "{{IRS_HOST}}" + ], + "path": [ + "irs", + "jobs" + ] + } + }, + "response": [] + }, { "name": "1.4.0 [Register Job with invalid or not exisiting aspect type] https://${environment}/irs/jobs", "event": [ From 335f150eac2c3ca254ddc492532984e4a3d117a6 Mon Sep 17 00:00:00 2001 From: ds-alexander-bulgakov Date: Wed, 14 Dec 2022 15:30:43 +0100 Subject: [PATCH 12/62] THI-988: adjusted expected json files --- .../TRI-528-expected-relationships.json | 1455 +++--- .../TRI-528-expected-submodels.json | 3273 +++++++------ .../TRI-704-expected-relationships.json | 1455 +++--- .../TRI-704-expected-submodels.json | 4095 +++++++++++------ .../TRI-767-expected-relationships.json | 1455 +++--- .../TRI-767-expected-submodels.json | 3180 +++++++------ 6 files changed, 8012 insertions(+), 6901 deletions(-) diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-relationships.json b/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-relationships.json index 0aa27b9b64..00a09045a1 100644 --- a/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-relationships.json +++ b/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-relationships.json @@ -1,752 +1,707 @@ { - "relationships": [ - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:de9d233e-c371-490b-b02b-092756ccdd42" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:625d9e00-b1c2-4d98-a9a7-fea9f00d2521" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:94f95beb-2d2e-4275-af82-ef601d25e7db" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:82260db6-7ac1-4b61-9b98-e193cfbfcca4" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d4e9558c-f75b-437d-8bd5-83fe14bdeeaf" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a7fc6773-b3f2-4b9e-b0ca-586cbbd51dd9" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6bd19830-3f63-4915-906d-0dd26196b7a6" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:571cca8d-ceda-458e-a51c-69bcf53fa1ad" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f473c6ec-3920-433a-89cd-c3b914ed6963" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:719cff6f-8425-4a9a-a20f-1ddf92873d57" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0e90d4a6-8ccc-483b-a786-bfac2a2d6553" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b2805664-6d1e-481a-b270-bc75cb67ad63" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:c1bbd0b8-b1df-40c5-b19a-714798799ffe" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:eab9525d-79c0-4c3c-83dd-4815f2703ed1" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:1b96d3d5-05e7-4da7-9915-2ed834316ca4" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:aacf2b0e-5de2-4952-862e-2b47a12e59bc" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:cb1e4dcd-31a0-47df-994b-f0f541cbaf9f" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:cbb53a71-fba4-4753-868b-e91721d8f7b1" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:9663defa-684b-4e75-80d5-82d001ab217a" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:9107e586-9bfa-4c82-b81c-6c8ae0ee36f6" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0bfbebba-8a1c-41a3-8199-b1075f327f7a" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:1294c992-af34-4779-b13c-5cae0fd521fb" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:34d50337-e11f-4f41-9a48-87cc986d5449" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:5ca6c6f0-3ac2-4b90-b88c-a28935646d55" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:744ec0a4-575b-47b4-9c97-b5eaad60b51e" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:fc7f69b3-27d8-40a8-866e-e4e79608d788" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:66488d8e-893a-4f4d-b650-e921ad5223e0" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:4870af61-d8e5-4923-b8b9-e43bab6e555b" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:682f4e8e-2157-45ed-8833-0e51d6f4b555" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:da6d0c77-2318-4cf0-b72a-602b758c4893" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b584ac7a-73b0-4d8b-8dff-a14dad6a8787" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:12236481-0285-44d8-810f-766c676a0298" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:a7fc6773-b3f2-4b9e-b0ca-586cbbd51dd9", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:80dd9f05-d4e0-4b14-9436-d9a31865b2a8" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3", - "linkedItem": { - "quantity": { - "quantityNumber": 0.2341, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:44516a17-96a6-48ea-be5f-9c20b71f8220" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3", - "linkedItem": { - "quantity": { - "quantityNumber": 0.2014, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:1c9e90dc-1135-402c-8a4f-11b4e6e8ca6e" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6ac8d26d-332f-450b-b281-2db2e4ed161a" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:6ac8d26d-332f-450b-b281-2db2e4ed161a", - "linkedItem": { - "quantity": { - "quantityNumber": 0.1908, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:4cf755d5-c54d-4049-bd34-ccb566bd7d08" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:aacf2b0e-5de2-4952-862e-2b47a12e59bc", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d25ba21d-55d8-4ba0-9a3e-2df4f199a08a" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:eabe1577-a594-409f-9da3-92dfa5b89354" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da", - "linkedItem": { - "quantity": { - "quantityNumber": 0.3301, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d0545b54-8839-4b13-b6c5-f19f0b7c9105" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da", - "linkedItem": { - "quantity": { - "quantityNumber": 0.2001, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:04baed27-a656-4cee-be2a-d2c99fa9c574" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:eabe1577-a594-409f-9da3-92dfa5b89354", - "linkedItem": { - "quantity": { - "quantityNumber": 0.1908, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b6496465-27fc-489e-9470-855215868bb2" - }, - "aspectType": "AssemblyPartRelationship" - } - ] + "relationships" : [ { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:de9d233e-c371-490b-b02b-092756ccdd42" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:625d9e00-b1c2-4d98-a9a7-fea9f00d2521" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:94f95beb-2d2e-4275-af82-ef601d25e7db" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:82260db6-7ac1-4b61-9b98-e193cfbfcca4" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d4e9558c-f75b-437d-8bd5-83fe14bdeeaf" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a7fc6773-b3f2-4b9e-b0ca-586cbbd51dd9" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6bd19830-3f63-4915-906d-0dd26196b7a6" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:571cca8d-ceda-458e-a51c-69bcf53fa1ad" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:f473c6ec-3920-433a-89cd-c3b914ed6963" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:719cff6f-8425-4a9a-a20f-1ddf92873d57" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:0e90d4a6-8ccc-483b-a786-bfac2a2d6553" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b2805664-6d1e-481a-b270-bc75cb67ad63" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c1bbd0b8-b1df-40c5-b19a-714798799ffe" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:eab9525d-79c0-4c3c-83dd-4815f2703ed1" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1b96d3d5-05e7-4da7-9915-2ed834316ca4" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:aacf2b0e-5de2-4952-862e-2b47a12e59bc" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:cb1e4dcd-31a0-47df-994b-f0f541cbaf9f" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:cbb53a71-fba4-4753-868b-e91721d8f7b1" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9663defa-684b-4e75-80d5-82d001ab217a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9107e586-9bfa-4c82-b81c-6c8ae0ee36f6" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:0bfbebba-8a1c-41a3-8199-b1075f327f7a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1294c992-af34-4779-b13c-5cae0fd521fb" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:34d50337-e11f-4f41-9a48-87cc986d5449" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5ca6c6f0-3ac2-4b90-b88c-a28935646d55" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:744ec0a4-575b-47b4-9c97-b5eaad60b51e" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:fc7f69b3-27d8-40a8-866e-e4e79608d788" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:66488d8e-893a-4f4d-b650-e921ad5223e0" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4870af61-d8e5-4923-b8b9-e43bab6e555b" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:682f4e8e-2157-45ed-8833-0e51d6f4b555" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:da6d0c77-2318-4cf0-b72a-602b758c4893" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b584ac7a-73b0-4d8b-8dff-a14dad6a8787" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:12236481-0285-44d8-810f-766c676a0298" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:a7fc6773-b3f2-4b9e-b0ca-586cbbd51dd9", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:80dd9f05-d4e0-4b14-9436-d9a31865b2a8" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:44516a17-96a6-48ea-be5f-9c20b71f8220" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1c9e90dc-1135-402c-8a4f-11b4e6e8ca6e" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6ac8d26d-332f-450b-b281-2db2e4ed161a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:6ac8d26d-332f-450b-b281-2db2e4ed161a", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4cf755d5-c54d-4049-bd34-ccb566bd7d08" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aacf2b0e-5de2-4952-862e-2b47a12e59bc", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d25ba21d-55d8-4ba0-9a3e-2df4f199a08a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:eabe1577-a594-409f-9da3-92dfa5b89354" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d0545b54-8839-4b13-b6c5-f19f0b7c9105" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:04baed27-a656-4cee-be2a-d2c99fa9c574" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:eabe1577-a594-409f-9da3-92dfa5b89354", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b6496465-27fc-489e-9470-855215868bb2" + }, + "aspectType" : "AssemblyPartRelationship" + } ] } \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-submodels.json b/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-submodels.json index af603a52fb..d2f13e03cc 100644 --- a/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-submodels.json +++ b/cucumber-tests/src/test/resources/expected-files/TRI-528-expected-submodels.json @@ -1,1751 +1,1688 @@ { - "submodels": [ - { - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "childParts": [ - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6bd19830-3f63-4915-906d-0dd26196b7a6" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:9663defa-684b-4e75-80d5-82d001ab217a" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:9107e586-9bfa-4c82-b81c-6c8ae0ee36f6" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:66488d8e-893a-4f4d-b650-e921ad5223e0" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a7fc6773-b3f2-4b9e-b0ca-586cbbd51dd9" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:aacf2b0e-5de2-4952-862e-2b47a12e59bc" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:571cca8d-ceda-458e-a51c-69bcf53fa1ad" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:94f95beb-2d2e-4275-af82-ef601d25e7db" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:5ca6c6f0-3ac2-4b90-b88c-a28935646d55" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d4e9558c-f75b-437d-8bd5-83fe14bdeeaf" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f473c6ec-3920-433a-89cd-c3b914ed6963" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:1294c992-af34-4779-b13c-5cae0fd521fb" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:cb1e4dcd-31a0-47df-994b-f0f541cbaf9f" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0bfbebba-8a1c-41a3-8199-b1075f327f7a" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:da6d0c77-2318-4cf0-b72a-602b758c4893" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:719cff6f-8425-4a9a-a20f-1ddf92873d57" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:744ec0a4-575b-47b4-9c97-b5eaad60b51e" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:34d50337-e11f-4f41-9a48-87cc986d5449" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:de9d233e-c371-490b-b02b-092756ccdd42" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:eab9525d-79c0-4c3c-83dd-4815f2703ed1" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:82260db6-7ac1-4b61-9b98-e193cfbfcca4" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:cbb53a71-fba4-4753-868b-e91721d8f7b1" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0e90d4a6-8ccc-483b-a786-bfac2a2d6553" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:12236481-0285-44d8-810f-766c676a0298" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:1b96d3d5-05e7-4da7-9915-2ed834316ca4" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:fc7f69b3-27d8-40a8-866e-e4e79608d788" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:4870af61-d8e5-4923-b8b9-e43bab6e555b" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:c1bbd0b8-b1df-40c5-b19a-714798799ffe" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b2805664-6d1e-481a-b270-bc75cb67ad63" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:682f4e8e-2157-45ed-8833-0e51d6f4b555" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b584ac7a-73b0-4d8b-8dff-a14dad6a8787" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:625d9e00-b1c2-4d98-a9a7-fea9f00d2521" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da" - } - ] - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "DI-16", - "key": "manufacturerPartId" - }, - { - "value": "OMCBYLPHNDTUQYOHK", - "key": "partInstanceId" - }, - { - "value": "OMCBYLPHNDTUQYOHK", - "key": "van" - } - ], - "manufacturingInformation": { - "date": "2016-09-21T11:53:57.000Z", - "country": "DEU" + "submodels" : [ { + "identification" : "46095b7a-fdb6-46cf-802e-de3c2d6dc991", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6bd19830-3f63-4915-906d-0dd26196b7a6" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9663defa-684b-4e75-80d5-82d001ab217a" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9107e586-9bfa-4c82-b81c-6c8ae0ee36f6" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:66488d8e-893a-4f4d-b650-e921ad5223e0" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a7fc6773-b3f2-4b9e-b0ca-586cbbd51dd9" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:aacf2b0e-5de2-4952-862e-2b47a12e59bc" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:571cca8d-ceda-458e-a51c-69bcf53fa1ad" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:94f95beb-2d2e-4275-af82-ef601d25e7db" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5ca6c6f0-3ac2-4b90-b88c-a28935646d55" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d4e9558c-f75b-437d-8bd5-83fe14bdeeaf" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:f473c6ec-3920-433a-89cd-c3b914ed6963" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1294c992-af34-4779-b13c-5cae0fd521fb" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:cb1e4dcd-31a0-47df-994b-f0f541cbaf9f" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:0bfbebba-8a1c-41a3-8199-b1075f327f7a" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:da6d0c77-2318-4cf0-b72a-602b758c4893" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:719cff6f-8425-4a9a-a20f-1ddf92873d57" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:744ec0a4-575b-47b4-9c97-b5eaad60b51e" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:34d50337-e11f-4f41-9a48-87cc986d5449" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:de9d233e-c371-490b-b02b-092756ccdd42" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:eab9525d-79c0-4c3c-83dd-4815f2703ed1" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:82260db6-7ac1-4b61-9b98-e193cfbfcca4" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:cbb53a71-fba4-4753-868b-e91721d8f7b1" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:0e90d4a6-8ccc-483b-a786-bfac2a2d6553" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:12236481-0285-44d8-810f-766c676a0298" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1b96d3d5-05e7-4da7-9915-2ed834316ca4" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:fc7f69b3-27d8-40a8-866e-e4e79608d788" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4870af61-d8e5-4923-b8b9-e43bab6e555b" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c1bbd0b8-b1df-40c5-b19a-714798799ffe" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b2805664-6d1e-481a-b270-bc75cb67ad63" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:682f4e8e-2157-45ed-8833-0e51d6f4b555" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b584ac7a-73b0-4d8b-8dff-a14dad6a8787" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:625d9e00-b1c2-4d98-a9a7-fea9f00d2521" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da" + } ] + } + }, { + "identification" : "7e1cca99-ceb3-4014-97a3-9d1b05f11111", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "DI-16", + "key" : "manufacturerPartId" + }, { + "value" : "OMCBYLPHNDTUQYOHK", + "key" : "partInstanceId" + }, { + "value" : "OMCBYLPHNDTUQYOHK", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2016-09-21T11:53:57.000Z", + "country" : "DEU" }, - "catenaXId": "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", - "partTypeInformation": { - "manufacturerPartId": "DI-16", - "classification": "product", - "nameAtManufacturer": "Vehicle Combustion" + "catenaXId" : "urn:uuid:513d7be8-e7e4-49f4-a22b-8cd31317e454", + "partTypeInformation" : { + "manufacturerPartId" : "DI-16", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Combustion" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "77795937-13", - "key": "manufacturerPartId" - }, - { - "value": "NO-228987054676435453412325", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "8bee4620-1c68-4cea-9520-4284d9e4e2d2", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-228987054676435453412325", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:de9d233e-c371-490b-b02b-092756ccdd42", - "partTypeInformation": { - "manufacturerPartId": "77795937-13", - "customerPartId": "77795937-13", - "classification": "component", - "nameAtManufacturer": "Steering wheel", - "nameAtCustomer": "Steering wheel" + "catenaXId" : "urn:uuid:de9d233e-c371-490b-b02b-092756ccdd42", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "45863316-60", - "key": "manufacturerPartId" - }, - { - "value": "NO-383031694883957480024383", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "6afb55d2-bf89-4734-9552-b4871a492c09", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-383031694883957480024383", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:625d9e00-b1c2-4d98-a9a7-fea9f00d2521", - "partTypeInformation": { - "manufacturerPartId": "45863316-60", - "customerPartId": "45863316-60", - "classification": "component", - "nameAtManufacturer": "Tires", - "nameAtCustomer": "Tires" + "catenaXId" : "urn:uuid:625d9e00-b1c2-4d98-a9a7-fea9f00d2521", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "28673126-98", - "key": "manufacturerPartId" - }, - { - "value": "NO-769452578547908494693969", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "d2a4246f-2a77-4a62-aed0-80bfd8d737e6", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-769452578547908494693969", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:94f95beb-2d2e-4275-af82-ef601d25e7db", - "partTypeInformation": { - "manufacturerPartId": "28673126-98", - "customerPartId": "28673126-98", - "classification": "component", - "nameAtManufacturer": "Door r-r", - "nameAtCustomer": "Door rear-right" + "catenaXId" : "urn:uuid:94f95beb-2d2e-4275-af82-ef601d25e7db", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "19073706-76", - "key": "manufacturerPartId" - }, - { - "value": "NO-465118501506511726597363", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "452e5131-4ed7-40d1-86ce-bbd12e4febca", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-465118501506511726597363", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:82260db6-7ac1-4b61-9b98-e193cfbfcca4", - "partTypeInformation": { - "manufacturerPartId": "19073706-76", - "customerPartId": "19073706-76", - "classification": "component", - "nameAtManufacturer": "Indicator right", - "nameAtCustomer": "Indicator right" + "catenaXId" : "urn:uuid:82260db6-7ac1-4b61-9b98-e193cfbfcca4", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "85023955-75", - "key": "manufacturerPartId" - }, - { - "value": "NO-483981471906326819012285", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "2d2b8e90-6bac-4fde-b822-2a7881ec8614", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-483981471906326819012285", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:d4e9558c-f75b-437d-8bd5-83fe14bdeeaf", - "partTypeInformation": { - "manufacturerPartId": "85023955-75", - "customerPartId": "85023955-75", - "classification": "component", - "nameAtManufacturer": "Tailgate", - "nameAtCustomer": "Tailgate" + "catenaXId" : "urn:uuid:d4e9558c-f75b-437d-8bd5-83fe14bdeeaf", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" } - }, - { - "catenaXId": "urn:uuid:a7fc6773-b3f2-4b9e-b0ca-586cbbd51dd9", - "childParts": [ - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:80dd9f05-d4e0-4b14-9436-d9a31865b2a8" - } - ] - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003CSGV", - "key": "manufacturerId" - }, - { - "value": "22782277-50", - "key": "manufacturerPartId" - }, - { - "value": "NO-492358453378932046169873", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "14676d11-258f-4952-8bdc-46ef4ee140e0", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:a7fc6773-b3f2-4b9e-b0ca-586cbbd51dd9", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:80dd9f05-d4e0-4b14-9436-d9a31865b2a8" + } ] + } + }, { + "identification" : "976447f3-4a6f-4e22-be8b-b3aff47b9a72", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-492358453378932046169873", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:a7fc6773-b3f2-4b9e-b0ca-586cbbd51dd9", - "partTypeInformation": { - "manufacturerPartId": "22782277-50", - "customerPartId": "22782277-50", - "classification": "component", - "nameAtManufacturer": "Door f-l", - "nameAtCustomer": "Door front-left" + "catenaXId" : "urn:uuid:a7fc6773-b3f2-4b9e-b0ca-586cbbd51dd9", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000000BJTL", - "key": "manufacturerId" - }, - { - "value": "95657762-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-074211028117767199853993", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "aa25adb8-239c-43a4-a59a-7195f9aa56c1", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-074211028117767199853993", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:80dd9f05-d4e0-4b14-9436-d9a31865b2a8", - "partTypeInformation": { - "manufacturerPartId": "95657762-59", - "customerPartId": "95657762-59", - "classification": "component", - "nameAtManufacturer": "Door Key", - "nameAtCustomer": "Door Key" + "catenaXId" : "urn:uuid:80dd9f05-d4e0-4b14-9436-d9a31865b2a8", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "10030939-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-381494136658703739908155", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "6553d920-08c7-4802-889e-5efab8ca5074", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-381494136658703739908155", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:6bd19830-3f63-4915-906d-0dd26196b7a6", - "partTypeInformation": { - "manufacturerPartId": "10030939-59", - "customerPartId": "10030939-59", - "classification": "component", - "nameAtManufacturer": "Engine", - "nameAtCustomer": "Engine" + "catenaXId" : "urn:uuid:6bd19830-3f63-4915-906d-0dd26196b7a6", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" } - }, - { - "diameter": 560, - "length": 843, - "width": 762, - "weight": 180, - "height": 711 - }, - { - "catenaXId": "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.2014", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:1c9e90dc-1135-402c-8a4f-11b4e6e8ca6e" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6ac8d26d-332f-450b-b281-2db2e4ed161a" - }, - { - "quantity": { - "quantityNumber": "0.2341", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:44516a17-96a6-48ea-be5f-9c20b71f8220" - } - ] - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003B2OM", - "key": "manufacturerId" - }, - { - "value": "1O222E8-43", - "key": "manufacturerPartId" - }, - { - "value": "NO-454520675807492820351595", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "f0d9ce0a-b98a-4ca8-8818-adacad820698", + "aspectType" : "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension", + "payload" : { + "diameter" : 560, + "length" : 843, + "width" : 762, + "weight" : 180, + "height" : 711 + } + }, { + "identification" : "b310ecfc-e44c-4030-b6b5-1fb33fd3d00e", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.2014", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1c9e90dc-1135-402c-8a4f-11b4e6e8ca6e" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6ac8d26d-332f-450b-b281-2db2e4ed161a" + }, { + "quantity" : { + "quantityNumber" : "0.2341", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:44516a17-96a6-48ea-be5f-9c20b71f8220" + } ] + } + }, { + "identification" : "4ed453ac-7cd1-4d74-b2e5-d7130c8c4d48", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-454520675807492820351595", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3", - "partTypeInformation": { - "manufacturerPartId": "1O222E8-43", - "customerPartId": "1O222E8-43", - "classification": "component", - "nameAtManufacturer": "Transmission", - "nameAtCustomer": "Transmission" + "catenaXId" : "urn:uuid:dc658148-64f5-4840-a42f-80396a42afe3", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" } - }, - { - "diameter": 380, - "length": 810, - "width": 590, - "weight": 85, - "height": 610 - }, - { - "catenaXId": "urn:uuid:44516a17-96a6-48ea-be5f-9c20b71f8220", - "childParts": [] - }, - { - "catenaXId": "urn:uuid:6ac8d26d-332f-450b-b281-2db2e4ed161a", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.1908", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:4cf755d5-c54d-4049-bd34-ccb566bd7d08" - } - ] - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003B3NX", - "key": "manufacturerId" - }, - { - "value": "66755R5-14", - "key": "manufacturerPartId" - }, - { - "value": "NO-585940955748527736354913", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "75e2a2b4-3f2d-40ec-a21b-17a54098c917", + "aspectType" : "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension", + "payload" : { + "diameter" : 380, + "length" : 810, + "width" : 590, + "weight" : 85, + "height" : 610 + } + }, { + "identification" : "2d209de0-c974-4384-a022-e18cdce14058", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:44516a17-96a6-48ea-be5f-9c20b71f8220", + "childParts" : [ ] + } + }, { + "identification" : "b5c89682-752b-45d8-b7c0-859ff87eef50", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:6ac8d26d-332f-450b-b281-2db2e4ed161a", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4cf755d5-c54d-4049-bd34-ccb566bd7d08" + } ] + } + }, { + "identification" : "b1642ffa-9881-4822-b258-5dbc03027c1b", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "66755R5-14", + "key" : "manufacturerPartId" + }, { + "value" : "NO-585940955748527736354913", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:6ac8d26d-332f-450b-b281-2db2e4ed161a", - "partTypeInformation": { - "manufacturerPartId": "66755R5-14", - "customerPartId": "66755R5-14", - "classification": "component", - "nameAtManufacturer": "Sensor", - "nameAtCustomer": "Sensor" + "catenaXId" : "urn:uuid:6ac8d26d-332f-450b-b281-2db2e4ed161a", + "partTypeInformation" : { + "manufacturerPartId" : "66755R5-14", + "customerPartId" : "66755R5-14", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "15635759-16", - "key": "manufacturerPartId" - }, - { - "value": "NO-313649659285446108570445", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "47f1eb36-d935-4b96-beaf-1bdb4a4b6241", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-313649659285446108570445", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:571cca8d-ceda-458e-a51c-69bcf53fa1ad", - "partTypeInformation": { - "manufacturerPartId": "15635759-16", - "customerPartId": "15635759-16", - "classification": "component", - "nameAtManufacturer": "Door r-l", - "nameAtCustomer": "Door rear-left" + "catenaXId" : "urn:uuid:571cca8d-ceda-458e-a51c-69bcf53fa1ad", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "13769860-47", - "key": "manufacturerPartId" - }, - { - "value": "NO-992059506619147345195164", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "af649a88-316e-4f77-9251-eecb52e57b92", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-992059506619147345195164", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:f473c6ec-3920-433a-89cd-c3b914ed6963", - "partTypeInformation": { - "manufacturerPartId": "13769860-47", - "customerPartId": "13769860-47", - "classification": "component", - "nameAtManufacturer": "Fender left", - "nameAtCustomer": "Fender right" + "catenaXId" : "urn:uuid:f473c6ec-3920-433a-89cd-c3b914ed6963", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "58471477-24", - "key": "manufacturerPartId" - }, - { - "value": "NO-256006458590897684674690", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "bdbb68d9-bb82-4cd3-b3e0-74d4d919faf3", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-256006458590897684674690", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:719cff6f-8425-4a9a-a20f-1ddf92873d57", - "partTypeInformation": { - "manufacturerPartId": "58471477-24", - "customerPartId": "58471477-24", - "classification": "component", - "nameAtManufacturer": "Exterior mirror right", - "nameAtCustomer": "Exterior mirror right" + "catenaXId" : "urn:uuid:719cff6f-8425-4a9a-a20f-1ddf92873d57", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "78141846-87", - "key": "manufacturerPartId" - }, - { - "value": "NO-159932335465198259357175", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "56625810-3298-4791-8cf6-9c6e0531bdf5", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-159932335465198259357175", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:0e90d4a6-8ccc-483b-a786-bfac2a2d6553", - "partTypeInformation": { - "manufacturerPartId": "78141846-87", - "customerPartId": "78141846-87", - "classification": "component", - "nameAtManufacturer": "Starter motor", - "nameAtCustomer": "Starter motor" + "catenaXId" : "urn:uuid:0e90d4a6-8ccc-483b-a786-bfac2a2d6553", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "88111709-49", - "key": "manufacturerPartId" - }, - { - "value": "NO-673420918684432228459139", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "acb96c67-fc87-483b-ad61-50c6f8863dc1", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-673420918684432228459139", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:b2805664-6d1e-481a-b270-bc75cb67ad63", - "partTypeInformation": { - "manufacturerPartId": "88111709-49", - "customerPartId": "88111709-49", - "classification": "component", - "nameAtManufacturer": "Axle part rear", - "nameAtCustomer": "Axle part rear" + "catenaXId" : "urn:uuid:b2805664-6d1e-481a-b270-bc75cb67ad63", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "12093297-03", - "key": "manufacturerPartId" - }, - { - "value": "NO-482943843990617202683900", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "b94ec0d6-d6ca-410f-9f14-bb54f7ca8630", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-482943843990617202683900", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:c1bbd0b8-b1df-40c5-b19a-714798799ffe", - "partTypeInformation": { - "manufacturerPartId": "12093297-03", - "customerPartId": "12093297-03", - "classification": "component", - "nameAtManufacturer": "Axle part front", - "nameAtCustomer": "Axle part front" + "catenaXId" : "urn:uuid:c1bbd0b8-b1df-40c5-b19a-714798799ffe", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "20125432-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-777927484786811719267774", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "8b6b567c-9f21-436d-8243-6f7aaad07ed6", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-777927484786811719267774", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:eab9525d-79c0-4c3c-83dd-4815f2703ed1", - "partTypeInformation": { - "manufacturerPartId": "20125432-59", - "customerPartId": "20125432-59", - "classification": "component", - "nameAtManufacturer": "Indicator left", - "nameAtCustomer": "Indicator left" + "catenaXId" : "urn:uuid:eab9525d-79c0-4c3c-83dd-4815f2703ed1", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "57929013-09", - "key": "manufacturerPartId" - }, - { - "value": "NO-506968858375705670698906", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "c596a9a9-9690-4446-a4ef-6ff9170cb819", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-506968858375705670698906", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:1b96d3d5-05e7-4da7-9915-2ed834316ca4", - "partTypeInformation": { - "manufacturerPartId": "57929013-09", - "customerPartId": "57929013-09", - "classification": "component", - "nameAtManufacturer": "AC compressor", - "nameAtCustomer": "Air conditioning compressor" + "catenaXId" : "urn:uuid:1b96d3d5-05e7-4da7-9915-2ed834316ca4", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" } - }, - { - "catenaXId": "urn:uuid:aacf2b0e-5de2-4952-862e-2b47a12e59bc", - "childParts": [ - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d25ba21d-55d8-4ba0-9a3e-2df4f199a08a" - } - ] - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003CSGV", - "key": "manufacturerId" - }, - { - "value": "95657362-64", - "key": "manufacturerPartId" - }, - { - "value": "NO-269076507870504883857636", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "f2a0637b-0b32-474b-a3fc-01755b46e7f2", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:aacf2b0e-5de2-4952-862e-2b47a12e59bc", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d25ba21d-55d8-4ba0-9a3e-2df4f199a08a" + } ] + } + }, { + "identification" : "57f5e8eb-912c-4ea9-a233-f7ff03f5c9e6", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-269076507870504883857636", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:aacf2b0e-5de2-4952-862e-2b47a12e59bc", - "partTypeInformation": { - "manufacturerPartId": "33740332-54", - "customerPartId": "33740332-54", - "classification": "component", - "nameAtManufacturer": "Door f-r", - "nameAtCustomer": "Door front-right" + "catenaXId" : "urn:uuid:aacf2b0e-5de2-4952-862e-2b47a12e59bc", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000000BJTL", - "key": "manufacturerId" - }, - { - "value": "95657762-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-002875190805601631753761", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "eb21687f-32a4-4894-af63-c5aa44c0f37c", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-002875190805601631753761", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:d25ba21d-55d8-4ba0-9a3e-2df4f199a08a", - "partTypeInformation": { - "manufacturerPartId": "95657762-59", - "customerPartId": "95657762-59", - "classification": "component", - "nameAtManufacturer": "Door Key", - "nameAtCustomer": "Door Key" + "catenaXId" : "urn:uuid:d25ba21d-55d8-4ba0-9a3e-2df4f199a08a", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "54165444-59", - "key": "manufacturerPartId" - }, - { - "value": "NO-117123994992309633101883", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "cc986d08-5b5d-4a51-99bd-3cfe66981149", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-117123994992309633101883", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:cb1e4dcd-31a0-47df-994b-f0f541cbaf9f", - "partTypeInformation": { - "manufacturerPartId": "54165444-59", - "customerPartId": "54165444-59", - "classification": "component", - "nameAtManufacturer": "Bumper front", - "nameAtCustomer": "Bumper front" + "catenaXId" : "urn:uuid:cb1e4dcd-31a0-47df-994b-f0f541cbaf9f", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "45415162-57", - "key": "manufacturerPartId" - }, - { - "value": "NO-178373350581495890032030", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "d42578a5-08a1-4d82-9842-458cf04af9c2", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-178373350581495890032030", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:cbb53a71-fba4-4753-868b-e91721d8f7b1", - "partTypeInformation": { - "manufacturerPartId": "45415162-57", - "customerPartId": "45415162-57", - "classification": "component", - "nameAtManufacturer": "Led headlight", - "nameAtCustomer": "Led headlight" + "catenaXId" : "urn:uuid:cbb53a71-fba4-4753-868b-e91721d8f7b1", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "32494586-73", - "key": "manufacturerPartId" - }, - { - "value": "NO-158280180102316527774467", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "70850b7d-fba7-40b8-b7cb-2554427e4480", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-158280180102316527774467", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:9663defa-684b-4e75-80d5-82d001ab217a", - "partTypeInformation": { - "manufacturerPartId": "32494586-73", - "customerPartId": "32494586-73", - "classification": "component", - "nameAtManufacturer": "Differential Gear", - "nameAtCustomer": "Differential Gear" + "catenaXId" : "urn:uuid:9663defa-684b-4e75-80d5-82d001ab217a", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "67034319-44", - "key": "manufacturerPartId" - }, - { - "value": "NO-572960754949710555167656", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "0cd0dec3-4176-42df-aee4-5e78c0624e46", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-572960754949710555167656", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:9107e586-9bfa-4c82-b81c-6c8ae0ee36f6", - "partTypeInformation": { - "manufacturerPartId": "67034319-44", - "customerPartId": "67034319-44", - "classification": "component", - "nameAtManufacturer": "Turbocharger", - "nameAtCustomer": "Turbocharger" + "catenaXId" : "urn:uuid:9107e586-9bfa-4c82-b81c-6c8ae0ee36f6", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "22768257-25", - "key": "manufacturerPartId" - }, - { - "value": "NO-154372580381393251774908", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "a4b3ecc1-4664-4360-bd68-1cfd831a2230", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-154372580381393251774908", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:0bfbebba-8a1c-41a3-8199-b1075f327f7a", - "partTypeInformation": { - "manufacturerPartId": "22768257-25", - "customerPartId": "22768257-25", - "classification": "component", - "nameAtManufacturer": "Bumper rear", - "nameAtCustomer": "Bumper rear" + "catenaXId" : "urn:uuid:0bfbebba-8a1c-41a3-8199-b1075f327f7a", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "36643162-35", - "key": "manufacturerPartId" - }, - { - "value": "NO-414351818865518400825673", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "53a0dd70-53a7-4ace-9a37-d23b5bf52bc8", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-414351818865518400825673", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:1294c992-af34-4779-b13c-5cae0fd521fb", - "partTypeInformation": { - "manufacturerPartId": "36643162-35", - "customerPartId": "36643162-35", - "classification": "component", - "nameAtManufacturer": "Fender right", - "nameAtCustomer": "Fender right" + "catenaXId" : "urn:uuid:1294c992-af34-4779-b13c-5cae0fd521fb", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "43501996-98", - "key": "manufacturerPartId" - }, - { - "value": "NO-793594087536635898069838", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "4aa7bd61-38b1-4f85-93a9-2b2518d549a1", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-793594087536635898069838", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:34d50337-e11f-4f41-9a48-87cc986d5449", - "partTypeInformation": { - "manufacturerPartId": "43501996-98", - "customerPartId": "43501996-98", - "classification": "component", - "nameAtManufacturer": "Dashboard", - "nameAtCustomer": "Dashboard" + "catenaXId" : "urn:uuid:34d50337-e11f-4f41-9a48-87cc986d5449", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" } - }, - { - "catenaXId": "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.3301", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d0545b54-8839-4b13-b6c5-f19f0b7c9105" - }, - { - "quantity": { - "quantityNumber": 1, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:eabe1577-a594-409f-9da3-92dfa5b89354" - }, - { - "quantity": { - "quantityNumber": "0.2001", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:04baed27-a656-4cee-be2a-d2c99fa9c574" - } - ] - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003B5MJ", - "key": "manufacturerId" - }, - { - "value": "45869M7-69", - "key": "manufacturerPartId" - }, - { - "value": "NO-534035086445797049897887", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "3d6805db-8a89-4d67-b547-071a4e2a5638", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.3301", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d0545b54-8839-4b13-b6c5-f19f0b7c9105" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:eabe1577-a594-409f-9da3-92dfa5b89354" + }, { + "quantity" : { + "quantityNumber" : "0.2001", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:04baed27-a656-4cee-be2a-d2c99fa9c574" + } ] + } + }, { + "identification" : "2ca78397-626f-451b-9900-6a80e90605da", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "45869M7-69", + "key" : "manufacturerPartId" + }, { + "value" : "NO-534035086445797049897887", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da", - "partTypeInformation": { - "manufacturerPartId": "45869M7-69", - "customerPartId": "45869M7-69", - "classification": "component", - "nameAtManufacturer": "ECU", - "nameAtCustomer": "ECU" + "catenaXId" : "urn:uuid:6ae4b780-c6dd-4c3c-adf8-b57b5cc8e3da", + "partTypeInformation" : { + "manufacturerPartId" : "45869M7-69", + "customerPartId" : "45869M7-69", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" } - }, - { - "catenaXId": "urn:uuid:eabe1577-a594-409f-9da3-92dfa5b89354", - "childParts": [ - { - "quantity": { - "quantityNumber": "0.1908", - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "AsBuilt", - "createdOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b6496465-27fc-489e-9470-855215868bb2" - } - ] - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003B3NX", - "key": "manufacturerId" - }, - { - "value": "45862S2-48", - "key": "manufacturerPartId" - }, - { - "value": "NO-150179965154423831568535", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "0a93a8d0-1655-48d3-8482-e6eded193267", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:eabe1577-a594-409f-9da3-92dfa5b89354", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b6496465-27fc-489e-9470-855215868bb2" + } ] + } + }, { + "identification" : "4ed26c08-d57a-40cb-a99e-ab902c803e6b", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "45862S2-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-150179965154423831568535", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:eabe1577-a594-409f-9da3-92dfa5b89354", - "partTypeInformation": { - "manufacturerPartId": "45862S2-48", - "customerPartId": "45862S2-48", - "classification": "component", - "nameAtManufacturer": "Sensor", - "nameAtCustomer": "Sensor" + "catenaXId" : "urn:uuid:eabe1577-a594-409f-9da3-92dfa5b89354", + "partTypeInformation" : { + "manufacturerPartId" : "45862S2-48", + "customerPartId" : "45862S2-48", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003B0Q0", - "key": "manufacturerId" - }, - { - "value": "92115H1-78", - "key": "manufacturerPartId" - }, - { - "value": "NO-179789149406444356724807", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "0dfed148-94ea-46fe-939f-2283968c678e", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "92115H1-78", + "key" : "manufacturerPartId" + }, { + "value" : "NO-179789149406444356724807", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:04baed27-a656-4cee-be2a-d2c99fa9c574", - "partTypeInformation": { - "manufacturerPartId": "92115H1-78", - "customerPartId": "92115H1-78", - "classification": "component", - "nameAtManufacturer": "Engineering Plastics", - "nameAtCustomer": "Engineering Plastics" + "catenaXId" : "urn:uuid:04baed27-a656-4cee-be2a-d2c99fa9c574", + "partTypeInformation" : { + "manufacturerPartId" : "92115H1-78", + "customerPartId" : "92115H1-78", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "94421589-82", - "key": "manufacturerPartId" - }, - { - "value": "NO-833143677077218520998127", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "b0884d7e-a724-433d-bfed-70941da4ceb1", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-833143677077218520998127", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:5ca6c6f0-3ac2-4b90-b88c-a28935646d55", - "partTypeInformation": { - "manufacturerPartId": "94421589-82", - "customerPartId": "94421589-82", - "classification": "component", - "nameAtManufacturer": "Engine hood", - "nameAtCustomer": "Engine hood" + "catenaXId" : "urn:uuid:5ca6c6f0-3ac2-4b90-b88c-a28935646d55", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "09002013-68", - "key": "manufacturerPartId" - }, - { - "value": "NO-502228708594450719353786", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "b1073e59-bf0c-43f7-ab2e-c19256660fea", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-502228708594450719353786", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:744ec0a4-575b-47b4-9c97-b5eaad60b51e", - "partTypeInformation": { - "manufacturerPartId": "09002013-68", - "customerPartId": "09002013-68", - "classification": "component", - "nameAtManufacturer": "Trailer coupling", - "nameAtCustomer": "Tailer coupling" + "catenaXId" : "urn:uuid:744ec0a4-575b-47b4-9c97-b5eaad60b51e", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "61184040-23", - "key": "manufacturerPartId" - }, - { - "value": "NO-561937303475455770405543", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "4842e19c-ce3b-454c-9bc0-f0a214a78c0d", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-561937303475455770405543", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:fc7f69b3-27d8-40a8-866e-e4e79608d788", - "partTypeInformation": { - "manufacturerPartId": "61184040-23", - "customerPartId": "61184040-23", - "classification": "component", - "nameAtManufacturer": "Taillight rear", - "nameAtCustomer": "Taillight rear" + "catenaXId" : "urn:uuid:fc7f69b3-27d8-40a8-866e-e4e79608d788", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "73849201-61", - "key": "manufacturerPartId" - }, - { - "value": "NO-042618127666918570970235", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "24aad4a6-ad8d-4aa8-befa-0bef98c50d3d", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-042618127666918570970235", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:66488d8e-893a-4f4d-b650-e921ad5223e0", - "partTypeInformation": { - "manufacturerPartId": "73849201-61", - "customerPartId": "73849201-61", - "classification": "component", - "nameAtManufacturer": "Catalysator", - "nameAtCustomer": "Catalysator" + "catenaXId" : "urn:uuid:66488d8e-893a-4f4d-b650-e921ad5223e0", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "78744126-74", - "key": "manufacturerPartId" - }, - { - "value": "NO-845276168850633063410003", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "ee32b405-021c-4dd3-91b1-32f1f3c2648c", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-845276168850633063410003", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:4870af61-d8e5-4923-b8b9-e43bab6e555b", - "partTypeInformation": { - "manufacturerPartId": "78744126-74", - "customerPartId": "78744126-74", - "classification": "component", - "nameAtManufacturer": "Taillight front", - "nameAtCustomer": "Taillight front" + "catenaXId" : "urn:uuid:4870af61-d8e5-4923-b8b9-e43bab6e555b", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "00871379-44", - "key": "manufacturerPartId" - }, - { - "value": "NO-933687301502317538061233", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "0f5d6319-e2cd-4a7e-b9bb-0d2985bef54a", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-933687301502317538061233", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:682f4e8e-2157-45ed-8833-0e51d6f4b555", - "partTypeInformation": { - "manufacturerPartId": "00871379-44", - "customerPartId": "00871379-44", - "classification": "component", - "nameAtManufacturer": "Chassis", - "nameAtCustomer": "Chassis" + "catenaXId" : "urn:uuid:682f4e8e-2157-45ed-8833-0e51d6f4b555", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "65529521-37", - "key": "manufacturerPartId" - }, - { - "value": "NO-040964449149119380741575", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "6cab4e62-a2d2-4ad1-a5aa-35fa4999cc19", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-040964449149119380741575", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:da6d0c77-2318-4cf0-b72a-602b758c4893", - "partTypeInformation": { - "manufacturerPartId": "65529521-37", - "customerPartId": "65529521-37", - "classification": "component", - "nameAtManufacturer": "Exterior mirror left", - "nameAtCustomer": "Exterior mirror left" + "catenaXId" : "urn:uuid:da6d0c77-2318-4cf0-b72a-602b758c4893", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "08901347-87", - "key": "manufacturerPartId" - }, - { - "value": "NO-196930078703628145562555", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "acf120ee-9d5a-46e3-8ffa-94492710eadd", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-196930078703628145562555", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:b584ac7a-73b0-4d8b-8dff-a14dad6a8787", - "partTypeInformation": { - "manufacturerPartId": "08901347-87", - "customerPartId": "08901347-87", - "classification": "component", - "nameAtManufacturer": "Rims", - "nameAtCustomer": "Rims" + "catenaXId" : "urn:uuid:b584ac7a-73b0-4d8b-8dff-a14dad6a8787", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" } - }, - { - "localIdentifiers": [ - { - "value": "BPNL00000003AZQP", - "key": "manufacturerId" - }, - { - "value": "81324139-23", - "key": "manufacturerPartId" - }, - { - "value": "NO-447510894747375170043335", - "key": "partInstanceId" - } - ], - "manufacturingInformation": { - "date": "2022-02-04T14:48:54", - "country": "DEU" + } + }, { + "identification" : "f5257610-f8ed-45fd-a5f9-1f2dabde2ed3", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AZQP", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-447510894747375170043335", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "catenaXId": "urn:uuid:12236481-0285-44d8-810f-766c676a0298", - "partTypeInformation": { - "manufacturerPartId": "81324139-23", - "customerPartId": "81324139-23", - "classification": "component", - "nameAtManufacturer": "Alternator", - "nameAtCustomer": "Alternator" + "catenaXId" : "urn:uuid:12236481-0285-44d8-810f-766c676a0298", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" } } - ] + } ] } \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-relationships.json b/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-relationships.json index b59a842a53..022e90320f 100644 --- a/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-relationships.json +++ b/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-relationships.json @@ -1,752 +1,707 @@ { - "relationships": [ - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f39b5055-fdc1-463d-8621-9d0e04feed92" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0d18c568-3e2c-468a-b3b6-005b0bbb0b4f" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:7ad788d4-fb9d-47e7-984e-bdef6d9b4fcc" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:c98dc077-f0fe-423d-8d74-48ef630232e7" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:cf26332b-250a-4e75-a971-e01970e8e04e" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:14d1edce-921f-48e1-a827-2bbf90146d09" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0df8a9d4-1410-4c42-8824-ce45ad5dcad6" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:35c78eca-db53-442c-9e01-467fc22c9434" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d2f93c23-6fb6-4585-b3cb-c0c91269e4fd" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:24d2e568-e161-4eb6-b599-9e1dee3cd333" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6e1fd2a3-5350-4492-9ac2-163eb62094e3" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:691ec9f3-22fe-49f8-97af-697bcdb903a8" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:879f66ad-a5c5-48d4-bda3-18c192423a63" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2bfe82e9-565b-4d55-80a8-4b6a61d33f20" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e97af751-4743-4884-8544-d29e26313c43" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2bafe7e7-e1c4-46f1-8da4-133dc4b92deb" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:81a65eb2-be1d-4bb4-ab39-9f859b282bc5" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a79aa73d-0d8c-4d84-9607-f21f039c8d84" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b274c885-0a36-4d74-ad8a-dbc2fb951a8c" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:7f7d23b1-d951-4297-8b26-dcab953da0c1" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d2d2b3b9-818f-4dc0-b77b-8c851d0c0af2" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a609b239-d015-4f37-a8eb-5a1956756ab2" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:26d7bebc-263b-4874-8222-971a2720a355" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:698fe434-5dc2-4c6c-80ff-d5a40223f52f" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:2aa238f2-bcb7-4037-bb65-824610f5b23a" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:f4db9a02-3181-4f2d-903f-ba5cbc5a9b82" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:97f9e4ef-9c5d-4038-9ea6-1102dfc70e01" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:4b6a8d0e-d6cf-492a-bbdd-20956baaa6e9" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:1e5a8888-5e03-4231-abfa-00de3be05da1" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:784af922-1460-49b2-b4dd-d14f72fb3a7a" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a06a4c66-9f8e-43f4-84c1-d5b35c8c53b0" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:9bec264e-0180-470d-be25-5976ca4eaf5c" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7", - "linkedItem": { - "quantity": { - "quantityNumber": 0.2014, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:458974fe-e4bf-4221-b108-b727f6da2466" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7", - "linkedItem": { - "quantity": { - "quantityNumber": 0.2341, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:df86b6e7-d3e2-46e7-8250-1e7be432a238" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:bb17dcf0-e1ec-4608-bc6c-043c93a66e8c" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:bb17dcf0-e1ec-4608-bc6c-043c93a66e8c", - "linkedItem": { - "quantity": { - "quantityNumber": 0.1908, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:fab8e14b-6d39-4efa-aa65-c6cd09d3af9f" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:6e1fd2a3-5350-4492-9ac2-163eb62094e3", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:9e3a7831-c396-48df-acc0-482d6930e3b0" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:81a65eb2-be1d-4bb4-ab39-9f859b282bc5", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:5d95b5a1-bd5a-4703-bd15-ce9e893a8f3c" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743", - "linkedItem": { - "quantity": { - "quantityNumber": 0.2001, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:3e22f4f9-b2e3-4e8a-9c8f-f2f7ddaa43a2" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:73173bf5-08df-4898-9d6d-8899015c161e" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743", - "linkedItem": { - "quantity": { - "quantityNumber": 0.3301, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:3db730be-9de5-4db5-a58d-684de36484e7" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:73173bf5-08df-4898-9d6d-8899015c161e", - "linkedItem": { - "quantity": { - "quantityNumber": 0.1908, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:07e0997f-4212-4456-8f27-164b30fc8355" - }, - "aspectType": "AssemblyPartRelationship" - } - ] + "relationships" : [ { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:f39b5055-fdc1-463d-8621-9d0e04feed92" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:0d18c568-3e2c-468a-b3b6-005b0bbb0b4f" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:7ad788d4-fb9d-47e7-984e-bdef6d9b4fcc" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c98dc077-f0fe-423d-8d74-48ef630232e7" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:cf26332b-250a-4e75-a971-e01970e8e04e" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:14d1edce-921f-48e1-a827-2bbf90146d09" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:0df8a9d4-1410-4c42-8824-ce45ad5dcad6" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:35c78eca-db53-442c-9e01-467fc22c9434" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d2f93c23-6fb6-4585-b3cb-c0c91269e4fd" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:24d2e568-e161-4eb6-b599-9e1dee3cd333" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6e1fd2a3-5350-4492-9ac2-163eb62094e3" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:691ec9f3-22fe-49f8-97af-697bcdb903a8" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:879f66ad-a5c5-48d4-bda3-18c192423a63" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:2bfe82e9-565b-4d55-80a8-4b6a61d33f20" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e97af751-4743-4884-8544-d29e26313c43" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:2bafe7e7-e1c4-46f1-8da4-133dc4b92deb" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:81a65eb2-be1d-4bb4-ab39-9f859b282bc5" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a79aa73d-0d8c-4d84-9607-f21f039c8d84" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b274c885-0a36-4d74-ad8a-dbc2fb951a8c" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:7f7d23b1-d951-4297-8b26-dcab953da0c1" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d2d2b3b9-818f-4dc0-b77b-8c851d0c0af2" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a609b239-d015-4f37-a8eb-5a1956756ab2" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:26d7bebc-263b-4874-8222-971a2720a355" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:698fe434-5dc2-4c6c-80ff-d5a40223f52f" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:2aa238f2-bcb7-4037-bb65-824610f5b23a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:f4db9a02-3181-4f2d-903f-ba5cbc5a9b82" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:97f9e4ef-9c5d-4038-9ea6-1102dfc70e01" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4b6a8d0e-d6cf-492a-bbdd-20956baaa6e9" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1e5a8888-5e03-4231-abfa-00de3be05da1" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:784af922-1460-49b2-b4dd-d14f72fb3a7a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a06a4c66-9f8e-43f4-84c1-d5b35c8c53b0" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9bec264e-0180-470d-be25-5976ca4eaf5c" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:458974fe-e4bf-4221-b108-b727f6da2466" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:df86b6e7-d3e2-46e7-8250-1e7be432a238" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:bb17dcf0-e1ec-4608-bc6c-043c93a66e8c" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:bb17dcf0-e1ec-4608-bc6c-043c93a66e8c", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:fab8e14b-6d39-4efa-aa65-c6cd09d3af9f" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:6e1fd2a3-5350-4492-9ac2-163eb62094e3", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9e3a7831-c396-48df-acc0-482d6930e3b0" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:81a65eb2-be1d-4bb4-ab39-9f859b282bc5", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5d95b5a1-bd5a-4703-bd15-ce9e893a8f3c" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3e22f4f9-b2e3-4e8a-9c8f-f2f7ddaa43a2" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:73173bf5-08df-4898-9d6d-8899015c161e" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3db730be-9de5-4db5-a58d-684de36484e7" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:73173bf5-08df-4898-9d6d-8899015c161e", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:07e0997f-4212-4456-8f27-164b30fc8355" + }, + "aspectType" : "AssemblyPartRelationship" + } ] } \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-submodels.json b/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-submodels.json index 1a38daddc1..1359c8f190 100644 --- a/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-submodels.json +++ b/cucumber-tests/src/test/resources/expected-files/TRI-704-expected-submodels.json @@ -1,1591 +1,2688 @@ { - "submodels" : [ { - "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:2bfe82e9-565b-4d55-80a8-4b6a61d33f20" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a609b239-d015-4f37-a8eb-5a1956756ab2" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:26d7bebc-263b-4874-8222-971a2720a355" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:d2f93c23-6fb6-4585-b3cb-c0c91269e4fd" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:6e1fd2a3-5350-4492-9ac2-163eb62094e3" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:81a65eb2-be1d-4bb4-ab39-9f859b282bc5" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:2bafe7e7-e1c4-46f1-8da4-133dc4b92deb" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1e5a8888-5e03-4231-abfa-00de3be05da1" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:784af922-1460-49b2-b4dd-d14f72fb3a7a" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:14d1edce-921f-48e1-a827-2bbf90146d09" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:f39b5055-fdc1-463d-8621-9d0e04feed92" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:97f9e4ef-9c5d-4038-9ea6-1102dfc70e01" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:0df8a9d4-1410-4c42-8824-ce45ad5dcad6" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:0d18c568-3e2c-468a-b3b6-005b0bbb0b4f" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:cf26332b-250a-4e75-a971-e01970e8e04e" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:4b6a8d0e-d6cf-492a-bbdd-20956baaa6e9" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:691ec9f3-22fe-49f8-97af-697bcdb903a8" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:9bec264e-0180-470d-be25-5976ca4eaf5c" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a79aa73d-0d8c-4d84-9607-f21f039c8d84" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:b274c885-0a36-4d74-ad8a-dbc2fb951a8c" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:2aa238f2-bcb7-4037-bb65-824610f5b23a" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:35c78eca-db53-442c-9e01-467fc22c9434" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:f4db9a02-3181-4f2d-903f-ba5cbc5a9b82" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:d2d2b3b9-818f-4dc0-b77b-8c851d0c0af2" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:24d2e568-e161-4eb6-b599-9e1dee3cd333" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:879f66ad-a5c5-48d4-bda3-18c192423a63" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:c98dc077-f0fe-423d-8d74-48ef630232e7" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a06a4c66-9f8e-43f4-84c1-d5b35c8c53b0" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:698fe434-5dc2-4c6c-80ff-d5a40223f52f" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:7f7d23b1-d951-4297-8b26-dcab953da0c1" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:e97af751-4743-4884-8544-d29e26313c43" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:7ad788d4-fb9d-47e7-984e-bdef6d9b4fcc" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743" - } ] - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "HM-54", - "key" : "manufacturerPartId" - }, { - "value" : "OMCESJELGZTODJEMH", - "key" : "partInstanceId" - }, { - "value" : "OMCESJELGZTODJEMH", - "key" : "van" - } ], - "manufacturingInformation" : { - "date" : "2015-08-21T12:05:27.000Z", - "country" : "DEU" + "submodels": [ + { + "identification": "883ee3f5-ea09-4d16-9787-3301e13dd4c1", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:2bfe82e9-565b-4d55-80a8-4b6a61d33f20" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:a609b239-d015-4f37-a8eb-5a1956756ab2" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:26d7bebc-263b-4874-8222-971a2720a355" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:d2f93c23-6fb6-4585-b3cb-c0c91269e4fd" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:6e1fd2a3-5350-4492-9ac2-163eb62094e3" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:81a65eb2-be1d-4bb4-ab39-9f859b282bc5" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:2bafe7e7-e1c4-46f1-8da4-133dc4b92deb" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1e5a8888-5e03-4231-abfa-00de3be05da1" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:784af922-1460-49b2-b4dd-d14f72fb3a7a" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:14d1edce-921f-48e1-a827-2bbf90146d09" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f39b5055-fdc1-463d-8621-9d0e04feed92" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:97f9e4ef-9c5d-4038-9ea6-1102dfc70e01" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:0df8a9d4-1410-4c42-8824-ce45ad5dcad6" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:0d18c568-3e2c-468a-b3b6-005b0bbb0b4f" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:cf26332b-250a-4e75-a971-e01970e8e04e" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:4b6a8d0e-d6cf-492a-bbdd-20956baaa6e9" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:691ec9f3-22fe-49f8-97af-697bcdb903a8" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:9bec264e-0180-470d-be25-5976ca4eaf5c" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:a79aa73d-0d8c-4d84-9607-f21f039c8d84" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:b274c885-0a36-4d74-ad8a-dbc2fb951a8c" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:2aa238f2-bcb7-4037-bb65-824610f5b23a" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:35c78eca-db53-442c-9e01-467fc22c9434" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f4db9a02-3181-4f2d-903f-ba5cbc5a9b82" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:d2d2b3b9-818f-4dc0-b77b-8c851d0c0af2" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:24d2e568-e161-4eb6-b599-9e1dee3cd333" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:879f66ad-a5c5-48d4-bda3-18c192423a63" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:c98dc077-f0fe-423d-8d74-48ef630232e7" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:a06a4c66-9f8e-43f4-84c1-d5b35c8c53b0" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:698fe434-5dc2-4c6c-80ff-d5a40223f52f" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:7f7d23b1-d951-4297-8b26-dcab953da0c1" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:e97af751-4743-4884-8544-d29e26313c43" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:7ad788d4-fb9d-47e7-984e-bdef6d9b4fcc" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743" + } + ] + } + }, + { + "identification": "61d9343d-9333-4453-9cee-94c6f68b0003", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "HM-54", + "key": "manufacturerPartId" + }, + { + "value": "OMCESJELGZTODJEMH", + "key": "partInstanceId" + }, + { + "value": "OMCESJELGZTODJEMH", + "key": "van" + } + ], + "manufacturingInformation": { + "date": "2015-08-21T12:05:27.000Z", + "country": "DEU" }, - "catenaXId" : "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", - "partTypeInformation" : { - "manufacturerPartId" : "HM-54", - "classification" : "product", - "nameAtManufacturer" : "Vehicle Combustion" + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "partTypeInformation": { + "manufacturerPartId": "HM-54", + "classification": "product", + "nameAtManufacturer": "Vehicle Combustion" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "13769860-47", - "key" : "manufacturerPartId" - }, { - "value" : "NO-159783786359351467396330", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "361d401a-1fee-4538-bb5c-8e6a83e76c70", + "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload": { + "component": [ + { + "materialName": "Iron", + "recycledContent": 76, + "materialClass": "1.1", + "quantiy": { + "unit": "unit:kilogram", + "value": 327.6 + }, + "quantity": { + "materialValue": 327.6, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "aggregateState": "solid", + "materialAbbreviation": "IR334" + }, + { + "materialName": "Polyethylen", + "recycledContent": 38, + "materialClass": "5.5.1", + "quantiy": { + "unit": "unit:kilogram", + "value": 163.8 + }, + "quantity": { + "materialValue": 163.8, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "aggregateState": "solid", + "materialAbbreviation": "PE221" + }, + { + "materialName": "Polyamid6", + "recycledContent": 54, + "materialClass": "5.5.1", + "quantiy": { + "unit": "unit:kilogram", + "value": 40.95 + }, + "quantity": { + "materialValue": 40.95, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "aggregateState": "solid", + "materialAbbreviation": "POL6" + }, + { + "materialName": "Aluminium", + "recycledContent": 13, + "materialClass": "2.1", + "quantiy": { + "unit": "unit:kilogram", + "value": 286.65 + }, + "quantity": { + "materialValue": 286.65, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "aggregateState": "solid", + "materialAbbreviation": "ALU331" + }, + { + "materialName": "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent": 30, + "materialClass": "0.7", + "quantiy": { + "unit": "unit:kilogram", + "value": 109.2 + }, + "quantity": { + "materialValue": 109.2, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "aggregateState": "solid", + "materialAbbreviation": "W123" + }, + { + "materialName": "Glue", + "recycledContent": 21, + "materialClass": "6.2", + "quantiy": { + "unit": "unit:kilogram", + "value": 54.6 + }, + "quantity": { + "materialValue": 54.6, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "aggregateState": "solid", + "materialAbbreviation": "GL338" + }, + { + "materialName": "Carbon Steel", + "recycledContent": 19, + "materialClass": "1.1.2", + "quantiy": { + "unit": "unit:kilogram", + "value": 382.2 + }, + "quantity": { + "materialValue": 382.2, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "aggregateState": "solid", + "materialAbbreviation": "CS2" + }, + { + "materialName": "Cooper", + "recycledContent": 83, + "materialClass": "3.1", + "quantiy": { + "unit": "unit:kilogram", + "value": 250.2 + }, + "quantity": { + "materialValue": 250.2, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "aggregateState": "solid", + "materialAbbreviation": "CO7" + }, + { + "materialName": "Rubber", + "recycledContent": 79, + "materialClass": "5.3", + "quantiy": { + "unit": "unit:kilogram", + "value": 7.8 + }, + "quantity": { + "materialValue": 7.8, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "aggregateState": "solid", + "materialAbbreviation": "R22" + }, + { + "materialName": "Textiles", + "recycledContent": 87, + "materialClass": "5.5.2", + "quantiy": { + "unit": "unit:kilogram", + "value": 5.12 + }, + "quantity": { + "materialValue": 5.12, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "aggregateState": "solid", + "materialAbbreviation": "TEX1" + } + ] + } + }, + { + "identification": "ebb829cf-4ebf-4be6-b5ae-a954bacdec70", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "13769860-47", + "key": "manufacturerPartId" + }, + { + "value": "NO-159783786359351467396330", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:f39b5055-fdc1-463d-8621-9d0e04feed92", - "partTypeInformation" : { - "manufacturerPartId" : "13769860-47", - "customerPartId" : "13769860-47", - "classification" : "component", - "nameAtManufacturer" : "Fender left", - "nameAtCustomer" : "Fender right" + "catenaXId": "urn:uuid:f39b5055-fdc1-463d-8621-9d0e04feed92", + "partTypeInformation": { + "manufacturerPartId": "13769860-47", + "customerPartId": "13769860-47", + "classification": "component", + "nameAtManufacturer": "Fender left", + "nameAtCustomer": "Fender right" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "22768257-25", - "key" : "manufacturerPartId" - }, { - "value" : "NO-648085728630125031216606", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "f4606590-a942-441a-9adb-52f0832d71dc", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "22768257-25", + "key": "manufacturerPartId" + }, + { + "value": "NO-648085728630125031216606", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:0d18c568-3e2c-468a-b3b6-005b0bbb0b4f", - "partTypeInformation" : { - "manufacturerPartId" : "22768257-25", - "customerPartId" : "22768257-25", - "classification" : "component", - "nameAtManufacturer" : "Bumper rear", - "nameAtCustomer" : "Bumper rear" + "catenaXId": "urn:uuid:0d18c568-3e2c-468a-b3b6-005b0bbb0b4f", + "partTypeInformation": { + "manufacturerPartId": "22768257-25", + "customerPartId": "22768257-25", + "classification": "component", + "nameAtManufacturer": "Bumper rear", + "nameAtCustomer": "Bumper rear" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "45863316-60", - "key" : "manufacturerPartId" - }, { - "value" : "NO-875452192223802089857293", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "45e4db0d-c80f-4494-b4ea-d0944ce1d3ac", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "45863316-60", + "key": "manufacturerPartId" + }, + { + "value": "NO-875452192223802089857293", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:7ad788d4-fb9d-47e7-984e-bdef6d9b4fcc", - "partTypeInformation" : { - "manufacturerPartId" : "45863316-60", - "customerPartId" : "45863316-60", - "classification" : "component", - "nameAtManufacturer" : "Tires", - "nameAtCustomer" : "Tires" + "catenaXId": "urn:uuid:7ad788d4-fb9d-47e7-984e-bdef6d9b4fcc", + "partTypeInformation": { + "manufacturerPartId": "45863316-60", + "customerPartId": "45863316-60", + "classification": "component", + "nameAtManufacturer": "Tires", + "nameAtCustomer": "Tires" } - }, { - "catenaXId" : "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7", - "childParts" : [ { - "quantity" : { - "quantityNumber" : "0.2014", - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:458974fe-e4bf-4221-b108-b727f6da2466" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:bb17dcf0-e1ec-4608-bc6c-043c93a66e8c" - }, { - "quantity" : { - "quantityNumber" : "0.2341", - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:df86b6e7-d3e2-46e7-8250-1e7be432a238" - } ] - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003B2OM", - "key" : "manufacturerId" - }, { - "value" : "1O222E8-43", - "key" : "manufacturerPartId" - }, { - "value" : "NO-873908589180071499476796", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "845a5f18-1da5-426c-902b-57224b331473", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7", + "childParts": [ + { + "quantity": { + "quantityNumber": "0.2014", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:458974fe-e4bf-4221-b108-b727f6da2466" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:bb17dcf0-e1ec-4608-bc6c-043c93a66e8c" + }, + { + "quantity": { + "quantityNumber": "0.2341", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:df86b6e7-d3e2-46e7-8250-1e7be432a238" + } + ] + } + }, + { + "identification": "8505fd99-19f1-4bca-84fd-e0a86b27670b", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B2OM", + "key": "manufacturerId" + }, + { + "value": "1O222E8-43", + "key": "manufacturerPartId" + }, + { + "value": "NO-873908589180071499476796", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7", - "partTypeInformation" : { - "manufacturerPartId" : "1O222E8-43", - "customerPartId" : "1O222E8-43", - "classification" : "component", - "nameAtManufacturer" : "Transmission", - "nameAtCustomer" : "Transmission" + "catenaXId": "urn:uuid:6003c630-b063-438d-9e4c-6ed9f36ad2b7", + "partTypeInformation": { + "manufacturerPartId": "1O222E8-43", + "customerPartId": "1O222E8-43", + "classification": "component", + "nameAtManufacturer": "Transmission", + "nameAtCustomer": "Transmission" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "92618B6-91", - "key" : "manufacturerPartId" - }, { - "value" : "NO-996973268325924049754969", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "43233838-3179-4684-b2e7-474de100727f", + "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload": { + "component": [ + { + "materialName": "Carbon Steel", + "recycledContent": 38, + "materialClass": "1.1.2", + "quantiy": { + "unit": "unit:kilogram", + "value": 72.843 + }, + "quantity": { + "materialValue": 72.843, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "aggregateState": "solid", + "materialAbbreviation": "CS2" + }, + { + "materialName": "Oil", + "recycledContent": 88, + "materialClass": "9.2", + "quantiy": { + "unit": "unit:kilogram", + "value": 6.9 + }, + "quantity": { + "materialValue": 6.9, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "aggregateState": "liquid", + "materialAbbreviation": "SAE40" + }, + { + "materialName": "Copper", + "recycledContent": 65, + "materialClass": "3.1", + "quantiy": { + "unit": "unit:kilogram", + "value": 1.2 + }, + "quantity": { + "materialValue": 1.2, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "aggregateState": "solid", + "materialAbbreviation": "CO7" + } + ] + } + }, + { + "identification": "c4e4bca3-c10b-4008-8e7b-f53383bd3361", + "aspectType": "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension", + "payload": { + "diameter": 380, + "length": 810, + "width": 590, + "weight": 85, + "height": 610 + } + }, + { + "identification": "0cab7f51-c625-422b-bb9f-7b07c7dd8278", + "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "manufacturerId" + }, + { + "value": "92618B6-91", + "key": "manufacturerPartId" + }, + { + "value": "NO-996973268325924049754969", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:458974fe-e4bf-4221-b108-b727f6da2466", - "partTypeInformation" : { - "manufacturerPartId" : "92618B6-91", - "customerPartId" : "92618B6-91", - "classification" : "component", - "nameAtManufacturer" : "Engineering Plastics", - "nameAtCustomer" : "Engineering Plastics" + "catenaXId": "urn:uuid:458974fe-e4bf-4221-b108-b727f6da2466", + "partTypeInformation": { + "manufacturerPartId": "92618B6-91", + "customerPartId": "92618B6-91", + "classification": "component", + "nameAtManufacturer": "Engineering Plastics", + "nameAtCustomer": "Engineering Plastics" } - }, { - "catenaXId" : "urn:uuid:df86b6e7-d3e2-46e7-8250-1e7be432a238", - "childParts" : [ ] - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "12971M9-93", - "key" : "manufacturerPartId" - }, { - "value" : "NO-697528248692636000290241", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "6ae463ef-d9d0-4453-9864-ce6f082f4d44", + "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload": { + "materialName": "Engineering Plastics", + "materialClass": "5.1", + "component": [ + { + "materialName": "PA66", + "recycledContent": 68, + "materialClass": "5.1", + "quantiy": { + "unit": "unit:percent", + "value": 70 + }, + "quantity": { + "unit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:percent" + }, + "value": 70 + }, + "aggregateState": "solid", + "materialAbbreviation": "PA66" + }, + { + "materialName": "GF-Faser", + "recycledContent": 37, + "materialClass": "5.1", + "quantiy": { + "unit": "unit:percent", + "value": 30 + }, + "quantity": { + "unit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:percent" + }, + "value": 30 + }, + "aggregateState": "solid", + "materialAbbreviation": "GF30" + } + ] + } + }, + { + "identification": "b1f1413e-0fdd-488f-a12e-115b1efb3f6d", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:df86b6e7-d3e2-46e7-8250-1e7be432a238", + "childParts": [] + } + }, + { + "identification": "31a4708c-9920-4e3d-80ce-107ed4f8a153", + "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AXS3", + "key": "manufacturerId" + }, + { + "value": "12971M9-93", + "key": "manufacturerPartId" + }, + { + "value": "NO-697528248692636000290241", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:df86b6e7-d3e2-46e7-8250-1e7be432a238", - "partTypeInformation" : { - "manufacturerPartId" : "12971M9-93", - "customerPartId" : "12971M9-93", - "classification" : "component", - "nameAtManufacturer" : "Glue", - "nameAtCustomer" : "Glue" + "catenaXId": "urn:uuid:df86b6e7-d3e2-46e7-8250-1e7be432a238", + "partTypeInformation": { + "manufacturerPartId": "12971M9-93", + "customerPartId": "12971M9-93", + "classification": "component", + "nameAtManufacturer": "Glue", + "nameAtCustomer": "Glue" } - }, { - "catenaXId" : "urn:uuid:bb17dcf0-e1ec-4608-bc6c-043c93a66e8c", - "childParts" : [ { - "quantity" : { - "quantityNumber" : "0.1908", - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:fab8e14b-6d39-4efa-aa65-c6cd09d3af9f" - } ] - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "59814X5-67", - "key" : "manufacturerPartId" - }, { - "value" : "NO-832707732988444699883511", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "c9a92a2e-4082-4e5b-9704-d4d518f22583", + "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload": { + "component": [ + { + "materialName": "Glue", + "materialClass": "6.2", + "quantiy": { + "unit": "unit:kilogram", + "value": 0 + }, + "quantity": { + "materialValue": 0, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "weight": "0.2341", + "materialAbbreviation": "GL338" + } + ] + } + }, + { + "identification": "cf743d4d-e141-4a3b-b392-4bf011b6e182", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:bb17dcf0-e1ec-4608-bc6c-043c93a66e8c", + "childParts": [ + { + "quantity": { + "quantityNumber": "0.1908", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:fab8e14b-6d39-4efa-aa65-c6cd09d3af9f" + } + ] + } + }, + { + "identification": "b94fe28c-f55d-47c6-8bbb-7d430458109c", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B3NX", + "key": "manufacturerId" + }, + { + "value": "59814X5-67", + "key": "manufacturerPartId" + }, + { + "value": "NO-832707732988444699883511", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:bb17dcf0-e1ec-4608-bc6c-043c93a66e8c", - "partTypeInformation" : { - "manufacturerPartId" : "59814X5-67", - "customerPartId" : "59814X5-67", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" + "catenaXId": "urn:uuid:bb17dcf0-e1ec-4608-bc6c-043c93a66e8c", + "partTypeInformation": { + "manufacturerPartId": "59814X5-67", + "customerPartId": "59814X5-67", + "classification": "component", + "nameAtManufacturer": "Sensor", + "nameAtCustomer": "Sensor" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "97985R7-02", - "key" : "manufacturerPartId" - }, { - "value" : "NO-407130073310430094548959", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "e5d4e9b4-4332-416d-947f-c3ec58b63686", + "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "manufacturerId" + }, + { + "value": "97985R7-02", + "key": "manufacturerPartId" + }, + { + "value": "NO-407130073310430094548959", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:fab8e14b-6d39-4efa-aa65-c6cd09d3af9f", - "partTypeInformation" : { - "manufacturerPartId" : "97985R7-02", - "customerPartId" : "97985R7-02", - "classification" : "component", - "nameAtManufacturer" : "NTIER Product", - "nameAtCustomer" : "NTIER Product" + "catenaXId": "urn:uuid:fab8e14b-6d39-4efa-aa65-c6cd09d3af9f", + "partTypeInformation": { + "manufacturerPartId": "97985R7-02", + "customerPartId": "97985R7-02", + "classification": "component", + "nameAtManufacturer": "NTIER Product", + "nameAtCustomer": "NTIER Product" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "78744126-74", - "key" : "manufacturerPartId" - }, { - "value" : "NO-936146767662584710972092", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "dc6e08a2-4b4c-4fd2-870a-efd8a0415907", + "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload": { + "materialName": "NTIER Product", + "materialClass": "5.5", + "component": [ + { + "materialName": "Aluminium oxide", + "recycledContent": 0, + "materialClass": "5.5.1", + "quantiy": { + "unit": "unit:percent", + "value": 60 + }, + "quantity": { + "unit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:percent" + }, + "value": 60 + }, + "aggregateState": "solid", + "materialAbbreviation": "" + }, + { + "materialName": "Other", + "recycledContent": 24, + "materialClass": "5.5.2", + "quantiy": { + "unit": "unit:percent", + "value": 40 + }, + "quantity": { + "unit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:percent" + }, + "value": 40 + }, + "aggregateState": "", + "materialAbbreviation": "" + } + ] + } + }, + { + "identification": "14d0b7d0-c51a-4871-b9fe-49a0b781d127", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "78744126-74", + "key": "manufacturerPartId" + }, + { + "value": "NO-936146767662584710972092", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:c98dc077-f0fe-423d-8d74-48ef630232e7", - "partTypeInformation" : { - "manufacturerPartId" : "78744126-74", - "customerPartId" : "78744126-74", - "classification" : "component", - "nameAtManufacturer" : "Taillight front", - "nameAtCustomer" : "Taillight front" + "catenaXId": "urn:uuid:c98dc077-f0fe-423d-8d74-48ef630232e7", + "partTypeInformation": { + "manufacturerPartId": "78744126-74", + "customerPartId": "78744126-74", + "classification": "component", + "nameAtManufacturer": "Taillight front", + "nameAtCustomer": "Taillight front" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "65529521-37", - "key" : "manufacturerPartId" - }, { - "value" : "NO-795833402191353495740434", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "247f3e2e-b8e5-42a7-b755-6ab11f75bb73", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "65529521-37", + "key": "manufacturerPartId" + }, + { + "value": "NO-795833402191353495740434", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:cf26332b-250a-4e75-a971-e01970e8e04e", - "partTypeInformation" : { - "manufacturerPartId" : "65529521-37", - "customerPartId" : "65529521-37", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror left", - "nameAtCustomer" : "Exterior mirror left" + "catenaXId": "urn:uuid:cf26332b-250a-4e75-a971-e01970e8e04e", + "partTypeInformation": { + "manufacturerPartId": "65529521-37", + "customerPartId": "65529521-37", + "classification": "component", + "nameAtManufacturer": "Exterior mirror left", + "nameAtCustomer": "Exterior mirror left" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "85023955-75", - "key" : "manufacturerPartId" - }, { - "value" : "NO-109742937265631134067226", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "02991ed8-2d2b-4515-b8d4-d75504667486", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "85023955-75", + "key": "manufacturerPartId" + }, + { + "value": "NO-109742937265631134067226", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:14d1edce-921f-48e1-a827-2bbf90146d09", - "partTypeInformation" : { - "manufacturerPartId" : "85023955-75", - "customerPartId" : "85023955-75", - "classification" : "component", - "nameAtManufacturer" : "Tailgate", - "nameAtCustomer" : "Tailgate" + "catenaXId": "urn:uuid:14d1edce-921f-48e1-a827-2bbf90146d09", + "partTypeInformation": { + "manufacturerPartId": "85023955-75", + "customerPartId": "85023955-75", + "classification": "component", + "nameAtManufacturer": "Tailgate", + "nameAtCustomer": "Tailgate" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "54165444-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-859558081368951863797556", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "382d54cd-2daa-4dca-a8f7-a4f13a22c8ad", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "54165444-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-859558081368951863797556", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:0df8a9d4-1410-4c42-8824-ce45ad5dcad6", - "partTypeInformation" : { - "manufacturerPartId" : "54165444-59", - "customerPartId" : "54165444-59", - "classification" : "component", - "nameAtManufacturer" : "Bumper front", - "nameAtCustomer" : "Bumper front" + "catenaXId": "urn:uuid:0df8a9d4-1410-4c42-8824-ce45ad5dcad6", + "partTypeInformation": { + "manufacturerPartId": "54165444-59", + "customerPartId": "54165444-59", + "classification": "component", + "nameAtManufacturer": "Bumper front", + "nameAtCustomer": "Bumper front" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "45415162-57", - "key" : "manufacturerPartId" - }, { - "value" : "NO-736995801506174463933281", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "91407dda-4744-42bf-ac93-6c4ce0239b43", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "45415162-57", + "key": "manufacturerPartId" + }, + { + "value": "NO-736995801506174463933281", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:35c78eca-db53-442c-9e01-467fc22c9434", - "partTypeInformation" : { - "manufacturerPartId" : "45415162-57", - "customerPartId" : "45415162-57", - "classification" : "component", - "nameAtManufacturer" : "Led headlight", - "nameAtCustomer" : "Led headlight" + "catenaXId": "urn:uuid:35c78eca-db53-442c-9e01-467fc22c9434", + "partTypeInformation": { + "manufacturerPartId": "45415162-57", + "customerPartId": "45415162-57", + "classification": "component", + "nameAtManufacturer": "Led headlight", + "nameAtCustomer": "Led headlight" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "73849201-61", - "key" : "manufacturerPartId" - }, { - "value" : "NO-678883217070402841337873", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "bf013292-bb53-4dd4-9b83-84900c0afcae", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "73849201-61", + "key": "manufacturerPartId" + }, + { + "value": "NO-678883217070402841337873", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:d2f93c23-6fb6-4585-b3cb-c0c91269e4fd", - "partTypeInformation" : { - "manufacturerPartId" : "73849201-61", - "customerPartId" : "73849201-61", - "classification" : "component", - "nameAtManufacturer" : "Catalysator", - "nameAtCustomer" : "Catalysator" + "catenaXId": "urn:uuid:d2f93c23-6fb6-4585-b3cb-c0c91269e4fd", + "partTypeInformation": { + "manufacturerPartId": "73849201-61", + "customerPartId": "73849201-61", + "classification": "component", + "nameAtManufacturer": "Catalysator", + "nameAtCustomer": "Catalysator" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "57929013-09", - "key" : "manufacturerPartId" - }, { - "value" : "NO-497606275003773028096452", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "9226b393-903f-40e4-b550-06fa34b0882e", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "57929013-09", + "key": "manufacturerPartId" + }, + { + "value": "NO-497606275003773028096452", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:24d2e568-e161-4eb6-b599-9e1dee3cd333", - "partTypeInformation" : { - "manufacturerPartId" : "57929013-09", - "customerPartId" : "57929013-09", - "classification" : "component", - "nameAtManufacturer" : "AC compressor", - "nameAtCustomer" : "Air conditioning compressor" + "catenaXId": "urn:uuid:24d2e568-e161-4eb6-b599-9e1dee3cd333", + "partTypeInformation": { + "manufacturerPartId": "57929013-09", + "customerPartId": "57929013-09", + "classification": "component", + "nameAtManufacturer": "AC compressor", + "nameAtCustomer": "Air conditioning compressor" } - }, { - "catenaXId" : "urn:uuid:6e1fd2a3-5350-4492-9ac2-163eb62094e3", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:9e3a7831-c396-48df-acc0-482d6930e3b0" - } ] - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "22782277-50", - "key" : "manufacturerPartId" - }, { - "value" : "NO-992523705893628105637478", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "d65fc401-bdf8-416d-8011-b7f0ebaa8a0d", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:6e1fd2a3-5350-4492-9ac2-163eb62094e3", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:9e3a7831-c396-48df-acc0-482d6930e3b0" + } + ] + } + }, + { + "identification": "3a0eafe0-f710-43b2-8575-fc21facdbd49", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003CSGV", + "key": "manufacturerId" + }, + { + "value": "22782277-50", + "key": "manufacturerPartId" + }, + { + "value": "NO-992523705893628105637478", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:6e1fd2a3-5350-4492-9ac2-163eb62094e3", - "partTypeInformation" : { - "manufacturerPartId" : "22782277-50", - "customerPartId" : "22782277-50", - "classification" : "component", - "nameAtManufacturer" : "Door f-l", - "nameAtCustomer" : "Door front-left" + "catenaXId": "urn:uuid:6e1fd2a3-5350-4492-9ac2-163eb62094e3", + "partTypeInformation": { + "manufacturerPartId": "22782277-50", + "customerPartId": "22782277-50", + "classification": "component", + "nameAtManufacturer": "Door f-l", + "nameAtCustomer": "Door front-left" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-598454621664395799844065", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "c13eb6b8-c60c-4b68-8516-08f74704baed", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000000BJTL", + "key": "manufacturerId" + }, + { + "value": "95657762-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-598454621664395799844065", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:9e3a7831-c396-48df-acc0-482d6930e3b0", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" + "catenaXId": "urn:uuid:9e3a7831-c396-48df-acc0-482d6930e3b0", + "partTypeInformation": { + "manufacturerPartId": "95657762-59", + "customerPartId": "95657762-59", + "classification": "component", + "nameAtManufacturer": "Door Key", + "nameAtCustomer": "Door Key" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "09002013-68", - "key" : "manufacturerPartId" - }, { - "value" : "NO-599982937473580405159269", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "1747889c-5a34-434a-b099-b4a8e126efb0", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "09002013-68", + "key": "manufacturerPartId" + }, + { + "value": "NO-599982937473580405159269", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:691ec9f3-22fe-49f8-97af-697bcdb903a8", - "partTypeInformation" : { - "manufacturerPartId" : "09002013-68", - "customerPartId" : "09002013-68", - "classification" : "component", - "nameAtManufacturer" : "Trailer coupling", - "nameAtCustomer" : "Tailer coupling" + "catenaXId": "urn:uuid:691ec9f3-22fe-49f8-97af-697bcdb903a8", + "partTypeInformation": { + "manufacturerPartId": "09002013-68", + "customerPartId": "09002013-68", + "classification": "component", + "nameAtManufacturer": "Trailer coupling", + "nameAtCustomer": "Tailer coupling" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "61184040-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-069096896052108527820936", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "a88e2e3c-d577-4625-bfa3-50663afb7a3e", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "61184040-23", + "key": "manufacturerPartId" + }, + { + "value": "NO-069096896052108527820936", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:879f66ad-a5c5-48d4-bda3-18c192423a63", - "partTypeInformation" : { - "manufacturerPartId" : "61184040-23", - "customerPartId" : "61184040-23", - "classification" : "component", - "nameAtManufacturer" : "Taillight rear", - "nameAtCustomer" : "Taillight rear" + "catenaXId": "urn:uuid:879f66ad-a5c5-48d4-bda3-18c192423a63", + "partTypeInformation": { + "manufacturerPartId": "61184040-23", + "customerPartId": "61184040-23", + "classification": "component", + "nameAtManufacturer": "Taillight rear", + "nameAtCustomer": "Taillight rear" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "10030939-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-268116253207603357192097", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "e5087d7c-ac2e-4e01-a984-a8af8e543840", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "10030939-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-268116253207603357192097", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:2bfe82e9-565b-4d55-80a8-4b6a61d33f20", - "partTypeInformation" : { - "manufacturerPartId" : "10030939-59", - "customerPartId" : "10030939-59", - "classification" : "component", - "nameAtManufacturer" : "Engine", - "nameAtCustomer" : "Engine" + "catenaXId": "urn:uuid:2bfe82e9-565b-4d55-80a8-4b6a61d33f20", + "partTypeInformation": { + "manufacturerPartId": "10030939-59", + "customerPartId": "10030939-59", + "classification": "component", + "nameAtManufacturer": "Engine", + "nameAtCustomer": "Engine" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "08901347-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-336648349977653376674280", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "eebd311b-574e-46aa-af51-54b08ab6a951", + "aspectType": "urn:bamm:io.catenax.physical_dimension:1.0.0#PhysicalDimension", + "payload": { + "diameter": 560, + "length": 843, + "width": 762, + "weight": 180, + "height": 711 + } + }, + { + "identification": "e688225a-bb9f-4065-8f6e-aeb9a1251ef1", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "08901347-87", + "key": "manufacturerPartId" + }, + { + "value": "NO-336648349977653376674280", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:e97af751-4743-4884-8544-d29e26313c43", - "partTypeInformation" : { - "manufacturerPartId" : "08901347-87", - "customerPartId" : "08901347-87", - "classification" : "component", - "nameAtManufacturer" : "Rims", - "nameAtCustomer" : "Rims" + "catenaXId": "urn:uuid:e97af751-4743-4884-8544-d29e26313c43", + "partTypeInformation": { + "manufacturerPartId": "08901347-87", + "customerPartId": "08901347-87", + "classification": "component", + "nameAtManufacturer": "Rims", + "nameAtCustomer": "Rims" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "15635759-16", - "key" : "manufacturerPartId" - }, { - "value" : "NO-509845995490482164990452", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "d0c3414a-5e3b-4ab7-8080-693a9e0d0c13", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "15635759-16", + "key": "manufacturerPartId" + }, + { + "value": "NO-509845995490482164990452", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:2bafe7e7-e1c4-46f1-8da4-133dc4b92deb", - "partTypeInformation" : { - "manufacturerPartId" : "15635759-16", - "customerPartId" : "15635759-16", - "classification" : "component", - "nameAtManufacturer" : "Door r-l", - "nameAtCustomer" : "Door rear-left" + "catenaXId": "urn:uuid:2bafe7e7-e1c4-46f1-8da4-133dc4b92deb", + "partTypeInformation": { + "manufacturerPartId": "15635759-16", + "customerPartId": "15635759-16", + "classification": "component", + "nameAtManufacturer": "Door r-l", + "nameAtCustomer": "Door rear-left" } - }, { - "catenaXId" : "urn:uuid:81a65eb2-be1d-4bb4-ab39-9f859b282bc5", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:5d95b5a1-bd5a-4703-bd15-ce9e893a8f3c" - } ] - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "95657362-64", - "key" : "manufacturerPartId" - }, { - "value" : "NO-066375034236248781737744", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "82183770-1ddb-473b-a972-676009d6493a", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:81a65eb2-be1d-4bb4-ab39-9f859b282bc5", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:5d95b5a1-bd5a-4703-bd15-ce9e893a8f3c" + } + ] + } + }, + { + "identification": "c7607aea-003b-44a6-8958-6cb836e55056", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003CSGV", + "key": "manufacturerId" + }, + { + "value": "95657362-64", + "key": "manufacturerPartId" + }, + { + "value": "NO-066375034236248781737744", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:81a65eb2-be1d-4bb4-ab39-9f859b282bc5", - "partTypeInformation" : { - "manufacturerPartId" : "33740332-54", - "customerPartId" : "33740332-54", - "classification" : "component", - "nameAtManufacturer" : "Door f-r", - "nameAtCustomer" : "Door front-right" + "catenaXId": "urn:uuid:81a65eb2-be1d-4bb4-ab39-9f859b282bc5", + "partTypeInformation": { + "manufacturerPartId": "33740332-54", + "customerPartId": "33740332-54", + "classification": "component", + "nameAtManufacturer": "Door f-r", + "nameAtCustomer": "Door front-right" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-362782815239459207049367", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "d23cb0c7-5c22-4f7c-b717-5053af018894", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000000BJTL", + "key": "manufacturerId" + }, + { + "value": "95657762-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-362782815239459207049367", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:5d95b5a1-bd5a-4703-bd15-ce9e893a8f3c", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" + "catenaXId": "urn:uuid:5d95b5a1-bd5a-4703-bd15-ce9e893a8f3c", + "partTypeInformation": { + "manufacturerPartId": "95657762-59", + "customerPartId": "95657762-59", + "classification": "component", + "nameAtManufacturer": "Door Key", + "nameAtCustomer": "Door Key" } - }, { - "catenaXId" : "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743", - "childParts" : [ { - "quantity" : { - "quantityNumber" : "0.3301", - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:3db730be-9de5-4db5-a58d-684de36484e7" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:73173bf5-08df-4898-9d6d-8899015c161e" - }, { - "quantity" : { - "quantityNumber" : "0.2001", - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:3e22f4f9-b2e3-4e8a-9c8f-f2f7ddaa43a2" - } ] - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", - "key" : "manufacturerId" - }, { - "value" : "82569I5-92", - "key" : "manufacturerPartId" - }, { - "value" : "NO-334015696717292140049666", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "82d28f40-4f42-4a13-b27e-86fd7b2d0ab3", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743", + "childParts": [ + { + "quantity": { + "quantityNumber": "0.3301", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:3db730be-9de5-4db5-a58d-684de36484e7" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:73173bf5-08df-4898-9d6d-8899015c161e" + }, + { + "quantity": { + "quantityNumber": "0.2001", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:3e22f4f9-b2e3-4e8a-9c8f-f2f7ddaa43a2" + } + ] + } + }, + { + "identification": "7aefc632-4574-4a05-b4be-17625c9b43bd", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B5MJ", + "key": "manufacturerId" + }, + { + "value": "82569I5-92", + "key": "manufacturerPartId" + }, + { + "value": "NO-334015696717292140049666", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743", - "partTypeInformation" : { - "manufacturerPartId" : "82569I5-92", - "customerPartId" : "82569I5-92", - "classification" : "component", - "nameAtManufacturer" : "ECU", - "nameAtCustomer" : "ECU" + "catenaXId": "urn:uuid:771d2ccc-a081-4d3a-bcb2-46c6a0a33743", + "partTypeInformation": { + "manufacturerPartId": "82569I5-92", + "customerPartId": "82569I5-92", + "classification": "component", + "nameAtManufacturer": "ECU", + "nameAtCustomer": "ECU" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "75712F5-01", - "key" : "manufacturerPartId" - }, { - "value" : "NO-605608995342255025031920", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "dd003788-e5e1-4bdd-90a1-f04646d0e34c", + "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload": { + "component": [ + { + "materialName": "Glue", + "recycledContent": 84, + "materialClass": "6.2", + "quantiy": { + "unit": "unit:kilogram", + "value": 0.3301 + }, + "quantity": { + "materialValue": 0.3301, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "aggregateState": "solid", + "materialAbbreviation": "GL338" + } + ] + } + }, + { + "identification": "4230431d-bb04-4f35-a4a1-ea37bf33b0c4", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "manufacturerId" + }, + { + "value": "75712F5-01", + "key": "manufacturerPartId" + }, + { + "value": "NO-605608995342255025031920", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:3e22f4f9-b2e3-4e8a-9c8f-f2f7ddaa43a2", - "partTypeInformation" : { - "manufacturerPartId" : "75712F5-01", - "customerPartId" : "75712F5-01", - "classification" : "component", - "nameAtManufacturer" : "Engineering Plastics", - "nameAtCustomer" : "Engineering Plastics" + "catenaXId": "urn:uuid:3e22f4f9-b2e3-4e8a-9c8f-f2f7ddaa43a2", + "partTypeInformation": { + "manufacturerPartId": "75712F5-01", + "customerPartId": "75712F5-01", + "classification": "component", + "nameAtManufacturer": "Engineering Plastics", + "nameAtCustomer": "Engineering Plastics" } - }, { - "catenaXId" : "urn:uuid:73173bf5-08df-4898-9d6d-8899015c161e", - "childParts" : [ { - "quantity" : { - "quantityNumber" : "0.1908", - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:07e0997f-4212-4456-8f27-164b30fc8355" - } ] - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "93129L2-82", - "key" : "manufacturerPartId" - }, { - "value" : "NO-385471450329826329987414", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "c8845fbc-1ced-42b7-a16a-a1cfe41d5308", + "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload": { + "materialName": "Engineering Plastics", + "materialClass": "5.1", + "component": [ + { + "materialName": "PA66", + "recycledContent": 13, + "materialClass": "5.1", + "quantiy": { + "unit": "unit:percent", + "value": 70 + }, + "quantity": { + "unit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:percent" + }, + "value": 70 + }, + "aggregateState": "solid", + "materialAbbreviation": "PA66" + }, + { + "materialName": "GF-Faser", + "recycledContent": 8, + "materialClass": "5.1", + "quantiy": { + "unit": "unit:percent", + "value": 30 + }, + "quantity": { + "unit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:percent" + }, + "value": 30 + }, + "aggregateState": "solid", + "materialAbbreviation": "GF30" + } + ] + } + }, + { + "identification": "ec684387-8140-4394-8805-2fb01c1628a4", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:73173bf5-08df-4898-9d6d-8899015c161e", + "childParts": [ + { + "quantity": { + "quantityNumber": "0.1908", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:07e0997f-4212-4456-8f27-164b30fc8355" + } + ] + } + }, + { + "identification": "ba09b696-eac4-4044-962b-9a769c5e663a", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B3NX", + "key": "manufacturerId" + }, + { + "value": "93129L2-82", + "key": "manufacturerPartId" + }, + { + "value": "NO-385471450329826329987414", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:73173bf5-08df-4898-9d6d-8899015c161e", - "partTypeInformation" : { - "manufacturerPartId" : "93129L2-82", - "customerPartId" : "93129L2-82", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" + "catenaXId": "urn:uuid:73173bf5-08df-4898-9d6d-8899015c161e", + "partTypeInformation": { + "manufacturerPartId": "93129L2-82", + "customerPartId": "93129L2-82", + "classification": "component", + "nameAtManufacturer": "Sensor", + "nameAtCustomer": "Sensor" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "58787H0-00", - "key" : "manufacturerPartId" - }, { - "value" : "NO-372624279623697356085107", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "a7ffe0e7-928f-4b9c-85a3-34de2d561475", + "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003B0Q0", + "key": "manufacturerId" + }, + { + "value": "58787H0-00", + "key": "manufacturerPartId" + }, + { + "value": "NO-372624279623697356085107", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:07e0997f-4212-4456-8f27-164b30fc8355", - "partTypeInformation" : { - "manufacturerPartId" : "58787H0-00", - "customerPartId" : "58787H0-00", - "classification" : "component", - "nameAtManufacturer" : "Engineering Plastics", - "nameAtCustomer" : "Engineering Plastics" + "catenaXId": "urn:uuid:07e0997f-4212-4456-8f27-164b30fc8355", + "partTypeInformation": { + "manufacturerPartId": "58787H0-00", + "customerPartId": "58787H0-00", + "classification": "component", + "nameAtManufacturer": "Engineering Plastics", + "nameAtCustomer": "Engineering Plastics" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "18902Y6-24", - "key" : "manufacturerPartId" - }, { - "value" : "NO-029075908400452177212167", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "15c75375-3d83-4d45-99d8-1eb1e62e07d5", + "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload": { + "materialName": "Engineering Plastics", + "materialClass": "5.1", + "component": [ + { + "materialName": "PA66", + "recycledContent": 27, + "materialClass": "5.1", + "quantiy": { + "unit": "unit:percent", + "value": 70 + }, + "quantity": { + "unit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:percent" + }, + "value": 70 + }, + "aggregateState": "solid", + "materialAbbreviation": "PA66" + }, + { + "materialName": "GF-Faser", + "recycledContent": 50, + "materialClass": "5.1", + "quantiy": { + "unit": "unit:percent", + "value": 30 + }, + "quantity": { + "unit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:percent" + }, + "value": 30 + }, + "aggregateState": "solid", + "materialAbbreviation": "GF30" + } + ] + } + }, + { + "identification": "768cecb7-dd8e-483a-8068-0676edd9fec3", + "aspectType": "urn:bamm:io.catenax.batch:1.0.0#Batch", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AXS3", + "key": "manufacturerId" + }, + { + "value": "18902Y6-24", + "key": "manufacturerPartId" + }, + { + "value": "NO-029075908400452177212167", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:3db730be-9de5-4db5-a58d-684de36484e7", - "partTypeInformation" : { - "manufacturerPartId" : "18902Y6-24", - "customerPartId" : "18902Y6-24", - "classification" : "component", - "nameAtManufacturer" : "Glue", - "nameAtCustomer" : "Glue" + "catenaXId": "urn:uuid:3db730be-9de5-4db5-a58d-684de36484e7", + "partTypeInformation": { + "manufacturerPartId": "18902Y6-24", + "customerPartId": "18902Y6-24", + "classification": "component", + "nameAtManufacturer": "Glue", + "nameAtCustomer": "Glue" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "77795937-13", - "key" : "manufacturerPartId" - }, { - "value" : "NO-533642229232718051376567", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "43bc3fec-8072-41d2-9769-a257b4a5e0d0", + "aspectType": "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload": { + "materialName": "Glue", + "materialClass": "5.5", + "component": [ + { + "materialName": "Aluminium oxide", + "recycledContent": 58, + "materialClass": "5.5.1", + "quantiy": { + "unit": "unit:percent", + "value": 70 + }, + "quantity": { + "unit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:percent" + }, + "value": 70 + }, + "aggregateState": "solid", + "materialAbbreviation": "AL7" + }, + { + "materialName": "Other", + "recycledContent": 84, + "materialClass": "5.5.2", + "quantiy": { + "unit": "unit:percent", + "value": 30 + }, + "quantity": { + "unit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:percent" + }, + "value": 30 + }, + "aggregateState": "", + "materialAbbreviation": "" + } + ] + } + }, + { + "identification": "b316bedb-5a1f-4e7a-aecc-27a20c87b60a", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "77795937-13", + "key": "manufacturerPartId" + }, + { + "value": "NO-533642229232718051376567", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:a79aa73d-0d8c-4d84-9607-f21f039c8d84", - "partTypeInformation" : { - "manufacturerPartId" : "77795937-13", - "customerPartId" : "77795937-13", - "classification" : "component", - "nameAtManufacturer" : "Steering wheel", - "nameAtCustomer" : "Steering wheel" + "catenaXId": "urn:uuid:a79aa73d-0d8c-4d84-9607-f21f039c8d84", + "partTypeInformation": { + "manufacturerPartId": "77795937-13", + "customerPartId": "77795937-13", + "classification": "component", + "nameAtManufacturer": "Steering wheel", + "nameAtCustomer": "Steering wheel" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "20125432-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-921997959382740097215495", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "9848d11c-2122-43c7-9f4f-21344310798b", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "20125432-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-921997959382740097215495", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:b274c885-0a36-4d74-ad8a-dbc2fb951a8c", - "partTypeInformation" : { - "manufacturerPartId" : "20125432-59", - "customerPartId" : "20125432-59", - "classification" : "component", - "nameAtManufacturer" : "Indicator left", - "nameAtCustomer" : "Indicator left" + "catenaXId": "urn:uuid:b274c885-0a36-4d74-ad8a-dbc2fb951a8c", + "partTypeInformation": { + "manufacturerPartId": "20125432-59", + "customerPartId": "20125432-59", + "classification": "component", + "nameAtManufacturer": "Indicator left", + "nameAtCustomer": "Indicator left" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "00871379-44", - "key" : "manufacturerPartId" - }, { - "value" : "NO-184251322111987500605285", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "b1e69dd1-1422-4474-8c16-b5ca699aaec0", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "00871379-44", + "key": "manufacturerPartId" + }, + { + "value": "NO-184251322111987500605285", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:7f7d23b1-d951-4297-8b26-dcab953da0c1", - "partTypeInformation" : { - "manufacturerPartId" : "00871379-44", - "customerPartId" : "00871379-44", - "classification" : "component", - "nameAtManufacturer" : "Chassis", - "nameAtCustomer" : "Chassis" + "catenaXId": "urn:uuid:7f7d23b1-d951-4297-8b26-dcab953da0c1", + "partTypeInformation": { + "manufacturerPartId": "00871379-44", + "customerPartId": "00871379-44", + "classification": "component", + "nameAtManufacturer": "Chassis", + "nameAtCustomer": "Chassis" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "81324139-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-155814525871073145655296", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "79da4701-7483-43f1-9c52-f621b431ef03", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "81324139-23", + "key": "manufacturerPartId" + }, + { + "value": "NO-155814525871073145655296", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:d2d2b3b9-818f-4dc0-b77b-8c851d0c0af2", - "partTypeInformation" : { - "manufacturerPartId" : "81324139-23", - "customerPartId" : "81324139-23", - "classification" : "component", - "nameAtManufacturer" : "Alternator", - "nameAtCustomer" : "Alternator" + "catenaXId": "urn:uuid:d2d2b3b9-818f-4dc0-b77b-8c851d0c0af2", + "partTypeInformation": { + "manufacturerPartId": "81324139-23", + "customerPartId": "81324139-23", + "classification": "component", + "nameAtManufacturer": "Alternator", + "nameAtCustomer": "Alternator" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "32494586-73", - "key" : "manufacturerPartId" - }, { - "value" : "NO-542786014164812113169432", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "305862d5-3929-4355-8334-fa6d1f6f1206", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "32494586-73", + "key": "manufacturerPartId" + }, + { + "value": "NO-542786014164812113169432", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:a609b239-d015-4f37-a8eb-5a1956756ab2", - "partTypeInformation" : { - "manufacturerPartId" : "32494586-73", - "customerPartId" : "32494586-73", - "classification" : "component", - "nameAtManufacturer" : "Differential Gear", - "nameAtCustomer" : "Differential Gear" + "catenaXId": "urn:uuid:a609b239-d015-4f37-a8eb-5a1956756ab2", + "partTypeInformation": { + "manufacturerPartId": "32494586-73", + "customerPartId": "32494586-73", + "classification": "component", + "nameAtManufacturer": "Differential Gear", + "nameAtCustomer": "Differential Gear" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "67034319-44", - "key" : "manufacturerPartId" - }, { - "value" : "NO-538477214738641259012537", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "1e5b8546-1025-44d4-8cad-07fb6314027e", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "67034319-44", + "key": "manufacturerPartId" + }, + { + "value": "NO-538477214738641259012537", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:26d7bebc-263b-4874-8222-971a2720a355", - "partTypeInformation" : { - "manufacturerPartId" : "67034319-44", - "customerPartId" : "67034319-44", - "classification" : "component", - "nameAtManufacturer" : "Turbocharger", - "nameAtCustomer" : "Turbocharger" + "catenaXId": "urn:uuid:26d7bebc-263b-4874-8222-971a2720a355", + "partTypeInformation": { + "manufacturerPartId": "67034319-44", + "customerPartId": "67034319-44", + "classification": "component", + "nameAtManufacturer": "Turbocharger", + "nameAtCustomer": "Turbocharger" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "88111709-49", - "key" : "manufacturerPartId" - }, { - "value" : "NO-194992578318124977058956", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "2d5a86b5-eb3a-4b02-a18a-4b8aeb0aa728", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "88111709-49", + "key": "manufacturerPartId" + }, + { + "value": "NO-194992578318124977058956", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:698fe434-5dc2-4c6c-80ff-d5a40223f52f", - "partTypeInformation" : { - "manufacturerPartId" : "88111709-49", - "customerPartId" : "88111709-49", - "classification" : "component", - "nameAtManufacturer" : "Axle part rear", - "nameAtCustomer" : "Axle part rear" + "catenaXId": "urn:uuid:698fe434-5dc2-4c6c-80ff-d5a40223f52f", + "partTypeInformation": { + "manufacturerPartId": "88111709-49", + "customerPartId": "88111709-49", + "classification": "component", + "nameAtManufacturer": "Axle part rear", + "nameAtCustomer": "Axle part rear" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "19073706-76", - "key" : "manufacturerPartId" - }, { - "value" : "NO-568627629271216126073773", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "83c8a7d0-30b1-494b-9ec1-fe4ee02e0dd0", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "19073706-76", + "key": "manufacturerPartId" + }, + { + "value": "NO-568627629271216126073773", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:2aa238f2-bcb7-4037-bb65-824610f5b23a", - "partTypeInformation" : { - "manufacturerPartId" : "19073706-76", - "customerPartId" : "19073706-76", - "classification" : "component", - "nameAtManufacturer" : "Indicator right", - "nameAtCustomer" : "Indicator right" + "catenaXId": "urn:uuid:2aa238f2-bcb7-4037-bb65-824610f5b23a", + "partTypeInformation": { + "manufacturerPartId": "19073706-76", + "customerPartId": "19073706-76", + "classification": "component", + "nameAtManufacturer": "Indicator right", + "nameAtCustomer": "Indicator right" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "78141846-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-551783054415179887723580", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "c3e0dd04-abc1-4098-ab0d-ae5fc734e526", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "78141846-87", + "key": "manufacturerPartId" + }, + { + "value": "NO-551783054415179887723580", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:f4db9a02-3181-4f2d-903f-ba5cbc5a9b82", - "partTypeInformation" : { - "manufacturerPartId" : "78141846-87", - "customerPartId" : "78141846-87", - "classification" : "component", - "nameAtManufacturer" : "Starter motor", - "nameAtCustomer" : "Starter motor" + "catenaXId": "urn:uuid:f4db9a02-3181-4f2d-903f-ba5cbc5a9b82", + "partTypeInformation": { + "manufacturerPartId": "78141846-87", + "customerPartId": "78141846-87", + "classification": "component", + "nameAtManufacturer": "Starter motor", + "nameAtCustomer": "Starter motor" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "36643162-35", - "key" : "manufacturerPartId" - }, { - "value" : "NO-031375911513879669240632", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "fc43d857-1f71-49cf-b64d-004315ac3433", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "36643162-35", + "key": "manufacturerPartId" + }, + { + "value": "NO-031375911513879669240632", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:97f9e4ef-9c5d-4038-9ea6-1102dfc70e01", - "partTypeInformation" : { - "manufacturerPartId" : "36643162-35", - "customerPartId" : "36643162-35", - "classification" : "component", - "nameAtManufacturer" : "Fender right", - "nameAtCustomer" : "Fender right" + "catenaXId": "urn:uuid:97f9e4ef-9c5d-4038-9ea6-1102dfc70e01", + "partTypeInformation": { + "manufacturerPartId": "36643162-35", + "customerPartId": "36643162-35", + "classification": "component", + "nameAtManufacturer": "Fender right", + "nameAtCustomer": "Fender right" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "58471477-24", - "key" : "manufacturerPartId" - }, { - "value" : "NO-106284885210407255353028", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "a4be5624-0e27-4753-b776-66ce33a73a5e", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "58471477-24", + "key": "manufacturerPartId" + }, + { + "value": "NO-106284885210407255353028", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:4b6a8d0e-d6cf-492a-bbdd-20956baaa6e9", - "partTypeInformation" : { - "manufacturerPartId" : "58471477-24", - "customerPartId" : "58471477-24", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror right", - "nameAtCustomer" : "Exterior mirror right" + "catenaXId": "urn:uuid:4b6a8d0e-d6cf-492a-bbdd-20956baaa6e9", + "partTypeInformation": { + "manufacturerPartId": "58471477-24", + "customerPartId": "58471477-24", + "classification": "component", + "nameAtManufacturer": "Exterior mirror right", + "nameAtCustomer": "Exterior mirror right" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "28673126-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-435856035485235689104018", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "a932c437-8c4c-4fa3-b2c4-a932b8cd0f79", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "28673126-98", + "key": "manufacturerPartId" + }, + { + "value": "NO-435856035485235689104018", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:1e5a8888-5e03-4231-abfa-00de3be05da1", - "partTypeInformation" : { - "manufacturerPartId" : "28673126-98", - "customerPartId" : "28673126-98", - "classification" : "component", - "nameAtManufacturer" : "Door r-r", - "nameAtCustomer" : "Door rear-right" + "catenaXId": "urn:uuid:1e5a8888-5e03-4231-abfa-00de3be05da1", + "partTypeInformation": { + "manufacturerPartId": "28673126-98", + "customerPartId": "28673126-98", + "classification": "component", + "nameAtManufacturer": "Door r-r", + "nameAtCustomer": "Door rear-right" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "94421589-82", - "key" : "manufacturerPartId" - }, { - "value" : "NO-016136282528997805450947", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "f5ced476-a531-4548-8351-365f65298a1a", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "94421589-82", + "key": "manufacturerPartId" + }, + { + "value": "NO-016136282528997805450947", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:784af922-1460-49b2-b4dd-d14f72fb3a7a", - "partTypeInformation" : { - "manufacturerPartId" : "94421589-82", - "customerPartId" : "94421589-82", - "classification" : "component", - "nameAtManufacturer" : "Engine hood", - "nameAtCustomer" : "Engine hood" + "catenaXId": "urn:uuid:784af922-1460-49b2-b4dd-d14f72fb3a7a", + "partTypeInformation": { + "manufacturerPartId": "94421589-82", + "customerPartId": "94421589-82", + "classification": "component", + "nameAtManufacturer": "Engine hood", + "nameAtCustomer": "Engine hood" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "12093297-03", - "key" : "manufacturerPartId" - }, { - "value" : "NO-337144781845234931718094", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "317864c8-7ebc-48b4-811b-1e9f76604afa", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "12093297-03", + "key": "manufacturerPartId" + }, + { + "value": "NO-337144781845234931718094", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:a06a4c66-9f8e-43f4-84c1-d5b35c8c53b0", - "partTypeInformation" : { - "manufacturerPartId" : "12093297-03", - "customerPartId" : "12093297-03", - "classification" : "component", - "nameAtManufacturer" : "Axle part front", - "nameAtCustomer" : "Axle part front" + "catenaXId": "urn:uuid:a06a4c66-9f8e-43f4-84c1-d5b35c8c53b0", + "partTypeInformation": { + "manufacturerPartId": "12093297-03", + "customerPartId": "12093297-03", + "classification": "component", + "nameAtManufacturer": "Axle part front", + "nameAtCustomer": "Axle part front" } - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AZQP", - "key" : "manufacturerId" - }, { - "value" : "43501996-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-475308452957816806114030", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" + } + }, + { + "identification": "596c3fee-ebfb-480a-90bc-c14e4185156b", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003AZQP", + "key": "manufacturerId" + }, + { + "value": "43501996-98", + "key": "manufacturerPartId" + }, + { + "value": "NO-475308452957816806114030", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" }, - "catenaXId" : "urn:uuid:9bec264e-0180-470d-be25-5976ca4eaf5c", - "partTypeInformation" : { - "manufacturerPartId" : "43501996-98", - "customerPartId" : "43501996-98", - "classification" : "component", - "nameAtManufacturer" : "Dashboard", - "nameAtCustomer" : "Dashboard" + "catenaXId": "urn:uuid:9bec264e-0180-470d-be25-5976ca4eaf5c", + "partTypeInformation": { + "manufacturerPartId": "43501996-98", + "customerPartId": "43501996-98", + "classification": "component", + "nameAtManufacturer": "Dashboard", + "nameAtCustomer": "Dashboard" } - } ] + } + }, + { + "identification": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "aspectType": "urn:bamm:io.catenax.vehicle.product_description:1.0.0#ProductDescription", + "payload": { + "bodyVariant": "Sedan", + "catenaXId": "urn:uuid:61a22b1c-5725-41fb-8e1e-dccaaba83838", + "engine": { + "size": 2998, + "power": 154 + }, + "emptyWeight": 1.79, + "fuel": "petrol", + "vehicleModel": "Vehicle Combustion", + "productionDateGMT": "2010-01-01", + "equipmentVariants": [ + { + "code": "S763C", + "description": "sport package", + "group": "special equipment" + }, + { + "code": "S218A", + "description": "sport automatic transmission", + "group": "special equipment" + }, + { + "code": "S2AVB", + "description": "adaptive drive", + "group": "special equipment" + }, + { + "code": "A458D", + "description": "parking assistance ", + "group": "special equipment" + } + ], + "anonymisedIdentifier": "sOMtThyhVNDWUZNRcBaQXXI", + "mileage": [ + { + "mileagePhase": "as maintained by workshop", + "mileageTimestamp": "2022-04-01T20:09:59.976Z", + "mileageDistance": 120000 + } + ] + } + } + ] } \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-relationships.json b/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-relationships.json index 2939fcb8ed..e5dca3118e 100644 --- a/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-relationships.json +++ b/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-relationships.json @@ -1,752 +1,707 @@ { - "relationships": [ - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:03556cd3-ae2a-48ad-a6a4-89631f8d41c8" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:d6142601-5e09-45fe-9b42-e53cf8cd458c" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:5fd291cf-e8df-4a46-8a8d-5054dbc3d1bf" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b21cfd5b-dcf4-46fa-9227-3eb693567dd8" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ae2ad2b8-ed83-42b8-9953-3d37e224b3d7" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:492781f5-62ff-4fb2-876c-3498e2844d13" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:cc8e9448-b294-46e7-8110-337e8bfa3001" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:fa5804f1-8d4e-437c-aca2-a5491be61758" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:badddd8a-0abf-4457-9d33-6eb05a3ac0ef" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:8eb9285f-5b10-4d5a-af7e-44e7fb0520f1" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:7bbbc63f-ba86-4e1c-ad78-6bdb4a125783" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:8914a66e-b59b-405f-afff-b97d71ebece3" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a0f6803c-e4dc-4cda-8ad2-91cc57868449" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:5371bcac-94d0-4254-9292-6666b8e28204" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:04b8c677-a058-4393-94c1-5c5a48a27535" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:36131844-36f1-426d-ba5d-a7ddcbb509d2" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:309a2b1a-0061-4895-b587-f72b3d725f8f" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a5d13a5a-5d77-4e74-810f-a9332cc19665" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:1e35e091-3d3d-421e-9c7e-14cf1c9442a6" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:66769f42-4905-424c-8f35-f072fab5a734" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:ceb6b964-5779-49c1-b5e9-0ee70528fcbd" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:7b87f5d6-f75e-40f1-a439-779ae9f57a21" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:9940dd40-a292-4a27-9733-08b1ca750149" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a1082992-cc3b-4da1-af6b-aa692ed71461" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:3e300930-0e1c-459c-8914-1ac631176716" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:8e916bb5-34cb-48cc-bb30-3dea756a25b0" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:6c7bdfd8-7116-46da-b8e2-7322acd64042" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:c4cd2818-b616-4a28-b327-7e7e449fbdae" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:98c92d24-0d86-4dfa-97bb-1f67794fc9f9" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e1ea599a-255d-4abf-a385-70f63cbe9794" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:cd55d855-754f-4a60-935a-88768f0ed2fb" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:e0566a95-a34f-44e0-a562-f5db3367f7f3" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:393f7bf3-c73f-4b0d-86ee-f5be8aa338c4" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68", - "linkedItem": { - "quantity": { - "quantityNumber": 0.2341, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:b86bfe10-6a4f-41be-8a00-6f11ce38702e" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68", - "linkedItem": { - "quantity": { - "quantityNumber": 0.2014, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:4b2b21d0-8fed-4d32-b262-f75c5b846df8" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:393f7bf3-c73f-4b0d-86ee-f5be8aa338c4", - "linkedItem": { - "quantity": { - "quantityNumber": 0.1908, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:5eb6d06a-f873-4ada-9fac-8431ad5a600d" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290", - "linkedItem": { - "quantity": { - "quantityNumber": 0.3301, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:620b64c1-3505-4740-b64e-32da0f1b82e5" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290", - "linkedItem": { - "quantity": { - "quantityNumber": 0.2001, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a14aa6a4-5be6-45d2-8544-b179baeeed7d" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:0ea1aa79-10d4-4df1-8a5a-5b7eafd26163" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:0ea1aa79-10d4-4df1-8a5a-5b7eafd26163", - "linkedItem": { - "quantity": { - "quantityNumber": 0.1908, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:kilogram" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:1d312e57-7a0f-47c0-8586-5b5c890d0bcf" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:ceb6b964-5779-49c1-b5e9-0ee70528fcbd", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:a4a26b9c-9460-4cc5-8645-85916b86adb0" - }, - "aspectType": "AssemblyPartRelationship" - }, - { - "catenaXId": "urn:uuid:3e300930-0e1c-459c-8914-1ac631176716", - "linkedItem": { - "quantity": { - "quantityNumber": 1.0, - "measurementUnit": { - "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue": "unit:piece" - } - }, - "lifecycleContext": "asBuilt", - "assembledOn": "2022-02-03T14:48:54.709Z", - "lastModifiedOn": "2022-02-03T14:48:54.709Z", - "childCatenaXId": "urn:uuid:8f9d8c7f-6d7a-48f1-9959-9fa3a1a7a891" - }, - "aspectType": "AssemblyPartRelationship" - } - ] + "relationships" : [ { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:03556cd3-ae2a-48ad-a6a4-89631f8d41c8" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d6142601-5e09-45fe-9b42-e53cf8cd458c" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5fd291cf-e8df-4a46-8a8d-5054dbc3d1bf" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b21cfd5b-dcf4-46fa-9227-3eb693567dd8" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ae2ad2b8-ed83-42b8-9953-3d37e224b3d7" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:492781f5-62ff-4fb2-876c-3498e2844d13" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:cc8e9448-b294-46e7-8110-337e8bfa3001" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:fa5804f1-8d4e-437c-aca2-a5491be61758" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:badddd8a-0abf-4457-9d33-6eb05a3ac0ef" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8eb9285f-5b10-4d5a-af7e-44e7fb0520f1" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:7bbbc63f-ba86-4e1c-ad78-6bdb4a125783" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8914a66e-b59b-405f-afff-b97d71ebece3" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a0f6803c-e4dc-4cda-8ad2-91cc57868449" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5371bcac-94d0-4254-9292-6666b8e28204" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:04b8c677-a058-4393-94c1-5c5a48a27535" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:36131844-36f1-426d-ba5d-a7ddcbb509d2" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:309a2b1a-0061-4895-b587-f72b3d725f8f" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a5d13a5a-5d77-4e74-810f-a9332cc19665" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1e35e091-3d3d-421e-9c7e-14cf1c9442a6" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:66769f42-4905-424c-8f35-f072fab5a734" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ceb6b964-5779-49c1-b5e9-0ee70528fcbd" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:7b87f5d6-f75e-40f1-a439-779ae9f57a21" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9940dd40-a292-4a27-9733-08b1ca750149" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a1082992-cc3b-4da1-af6b-aa692ed71461" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3e300930-0e1c-459c-8914-1ac631176716" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8e916bb5-34cb-48cc-bb30-3dea756a25b0" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6c7bdfd8-7116-46da-b8e2-7322acd64042" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c4cd2818-b616-4a28-b327-7e7e449fbdae" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:98c92d24-0d86-4dfa-97bb-1f67794fc9f9" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e1ea599a-255d-4abf-a385-70f63cbe9794" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:cd55d855-754f-4a60-935a-88768f0ed2fb" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e0566a95-a34f-44e0-a562-f5db3367f7f3" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:393f7bf3-c73f-4b0d-86ee-f5be8aa338c4" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b86bfe10-6a4f-41be-8a00-6f11ce38702e" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4b2b21d0-8fed-4d32-b262-f75c5b846df8" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:393f7bf3-c73f-4b0d-86ee-f5be8aa338c4", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5eb6d06a-f873-4ada-9fac-8431ad5a600d" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:620b64c1-3505-4740-b64e-32da0f1b82e5" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a14aa6a4-5be6-45d2-8544-b179baeeed7d" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:0ea1aa79-10d4-4df1-8a5a-5b7eafd26163" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:0ea1aa79-10d4-4df1-8a5a-5b7eafd26163", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1d312e57-7a0f-47c0-8586-5b5c890d0bcf" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:ceb6b964-5779-49c1-b5e9-0ee70528fcbd", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a4a26b9c-9460-4cc5-8645-85916b86adb0" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:3e300930-0e1c-459c-8914-1ac631176716", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8f9d8c7f-6d7a-48f1-9959-9fa3a1a7a891" + }, + "aspectType" : "AssemblyPartRelationship" + } ] } \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-submodels.json b/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-submodels.json index 3e380850d5..61806008dd 100644 --- a/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-submodels.json +++ b/cucumber-tests/src/test/resources/expected-files/TRI-767-expected-submodels.json @@ -1,1591 +1,1803 @@ { "submodels" : [ { - "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:c4cd2818-b616-4a28-b327-7e7e449fbdae" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:e0566a95-a34f-44e0-a562-f5db3367f7f3" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:b21cfd5b-dcf4-46fa-9227-3eb693567dd8" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:7bbbc63f-ba86-4e1c-ad78-6bdb4a125783" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:3e300930-0e1c-459c-8914-1ac631176716" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:ceb6b964-5779-49c1-b5e9-0ee70528fcbd" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:badddd8a-0abf-4457-9d33-6eb05a3ac0ef" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:7b87f5d6-f75e-40f1-a439-779ae9f57a21" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:8914a66e-b59b-405f-afff-b97d71ebece3" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a1082992-cc3b-4da1-af6b-aa692ed71461" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1e35e091-3d3d-421e-9c7e-14cf1c9442a6" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:cc8e9448-b294-46e7-8110-337e8bfa3001" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:fa5804f1-8d4e-437c-aca2-a5491be61758" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a0f6803c-e4dc-4cda-8ad2-91cc57868449" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:492781f5-62ff-4fb2-876c-3498e2844d13" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:6c7bdfd8-7116-46da-b8e2-7322acd64042" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:d6142601-5e09-45fe-9b42-e53cf8cd458c" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:8eb9285f-5b10-4d5a-af7e-44e7fb0520f1" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:36131844-36f1-426d-ba5d-a7ddcbb509d2" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:04b8c677-a058-4393-94c1-5c5a48a27535" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:ae2ad2b8-ed83-42b8-9953-3d37e224b3d7" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:e1ea599a-255d-4abf-a385-70f63cbe9794" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:66769f42-4905-424c-8f35-f072fab5a734" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:309a2b1a-0061-4895-b587-f72b3d725f8f" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a5d13a5a-5d77-4e74-810f-a9332cc19665" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:cd55d855-754f-4a60-935a-88768f0ed2fb" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:5371bcac-94d0-4254-9292-6666b8e28204" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:9940dd40-a292-4a27-9733-08b1ca750149" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:5fd291cf-e8df-4a46-8a8d-5054dbc3d1bf" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:8e916bb5-34cb-48cc-bb30-3dea756a25b0" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:03556cd3-ae2a-48ad-a6a4-89631f8d41c8" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:98c92d24-0d86-4dfa-97bb-1f67794fc9f9" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } + "identification" : "4d8f0046-6bc7-440e-919d-af51acd84adf", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c4cd2818-b616-4a28-b327-7e7e449fbdae" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e0566a95-a34f-44e0-a562-f5db3367f7f3" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b21cfd5b-dcf4-46fa-9227-3eb693567dd8" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:7bbbc63f-ba86-4e1c-ad78-6bdb4a125783" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3e300930-0e1c-459c-8914-1ac631176716" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ceb6b964-5779-49c1-b5e9-0ee70528fcbd" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:badddd8a-0abf-4457-9d33-6eb05a3ac0ef" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:7b87f5d6-f75e-40f1-a439-779ae9f57a21" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8914a66e-b59b-405f-afff-b97d71ebece3" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a1082992-cc3b-4da1-af6b-aa692ed71461" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1e35e091-3d3d-421e-9c7e-14cf1c9442a6" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:cc8e9448-b294-46e7-8110-337e8bfa3001" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:fa5804f1-8d4e-437c-aca2-a5491be61758" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a0f6803c-e4dc-4cda-8ad2-91cc57868449" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:492781f5-62ff-4fb2-876c-3498e2844d13" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6c7bdfd8-7116-46da-b8e2-7322acd64042" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d6142601-5e09-45fe-9b42-e53cf8cd458c" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8eb9285f-5b10-4d5a-af7e-44e7fb0520f1" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:36131844-36f1-426d-ba5d-a7ddcbb509d2" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:04b8c677-a058-4393-94c1-5c5a48a27535" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ae2ad2b8-ed83-42b8-9953-3d37e224b3d7" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e1ea599a-255d-4abf-a385-70f63cbe9794" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:66769f42-4905-424c-8f35-f072fab5a734" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:309a2b1a-0061-4895-b587-f72b3d725f8f" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a5d13a5a-5d77-4e74-810f-a9332cc19665" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:cd55d855-754f-4a60-935a-88768f0ed2fb" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5371bcac-94d0-4254-9292-6666b8e28204" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9940dd40-a292-4a27-9733-08b1ca750149" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5fd291cf-e8df-4a46-8a8d-5054dbc3d1bf" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8e916bb5-34cb-48cc-bb30-3dea756a25b0" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:03556cd3-ae2a-48ad-a6a4-89631f8d41c8" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:98c92d24-0d86-4dfa-97bb-1f67794fc9f9" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290" + } ] + } + }, { + "identification" : "4ef89194-efd2-41a9-988e-34049d36513b", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "XW-63", + "key" : "manufacturerPartId" + }, { + "value" : "OMAPUHRUUEFIUYLEE", + "key" : "partInstanceId" + }, { + "value" : "OMAPUHRUUEFIUYLEE", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2013-10-09T17:39:34.000Z", + "country" : "DEU" }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290" - } ] + "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "partTypeInformation" : { + "manufacturerPartId" : "XW-63", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Combustion" + } + } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "XW-63", - "key" : "manufacturerPartId" - }, { - "value" : "OMAPUHRUUEFIUYLEE", - "key" : "partInstanceId" - }, { - "value" : "OMAPUHRUUEFIUYLEE", - "key" : "van" - } ], - "manufacturingInformation" : { - "date" : "2013-10-09T17:39:34.000Z", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", - "partTypeInformation" : { - "manufacturerPartId" : "XW-63", - "classification" : "product", - "nameAtManufacturer" : "Vehicle Combustion" + "identification" : "17c07c81-5167-4c97-9be3-cb54e8412f81", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-080214184948140272203787", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:03556cd3-ae2a-48ad-a6a4-89631f8d41c8", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "08901347-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-080214184948140272203787", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:03556cd3-ae2a-48ad-a6a4-89631f8d41c8", - "partTypeInformation" : { - "manufacturerPartId" : "08901347-87", - "customerPartId" : "08901347-87", - "classification" : "component", - "nameAtManufacturer" : "Rims", - "nameAtCustomer" : "Rims" + "identification" : "ce4d0f42-bfcc-480d-9e9d-50dd93f75856", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-443137672890588964185377", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d6142601-5e09-45fe-9b42-e53cf8cd458c", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "09002013-68", - "key" : "manufacturerPartId" - }, { - "value" : "NO-443137672890588964185377", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:d6142601-5e09-45fe-9b42-e53cf8cd458c", - "partTypeInformation" : { - "manufacturerPartId" : "09002013-68", - "customerPartId" : "09002013-68", - "classification" : "component", - "nameAtManufacturer" : "Trailer coupling", - "nameAtCustomer" : "Tailer coupling" + "identification" : "539f62e6-0996-41bb-b012-52418db0d0bb", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-776024652978438241566808", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5fd291cf-e8df-4a46-8a8d-5054dbc3d1bf", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "88111709-49", - "key" : "manufacturerPartId" - }, { - "value" : "NO-776024652978438241566808", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5fd291cf-e8df-4a46-8a8d-5054dbc3d1bf", - "partTypeInformation" : { - "manufacturerPartId" : "88111709-49", - "customerPartId" : "88111709-49", - "classification" : "component", - "nameAtManufacturer" : "Axle part rear", - "nameAtCustomer" : "Axle part rear" + "identification" : "c422769c-622a-4712-8709-72cb75c15080", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "67034319-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-706618611841126090384630", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b21cfd5b-dcf4-46fa-9227-3eb693567dd8", + "partTypeInformation" : { + "manufacturerPartId" : "67034319-44", + "customerPartId" : "67034319-44", + "classification" : "component", + "nameAtManufacturer" : "Turbocharger", + "nameAtCustomer" : "Turbocharger" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "67034319-44", - "key" : "manufacturerPartId" - }, { - "value" : "NO-706618611841126090384630", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b21cfd5b-dcf4-46fa-9227-3eb693567dd8", - "partTypeInformation" : { - "manufacturerPartId" : "67034319-44", - "customerPartId" : "67034319-44", - "classification" : "component", - "nameAtManufacturer" : "Turbocharger", - "nameAtCustomer" : "Turbocharger" + "identification" : "b93e8e4e-dae9-4951-9322-04489450f7a3", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-161982682066926378535434", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ae2ad2b8-ed83-42b8-9953-3d37e224b3d7", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "19073706-76", - "key" : "manufacturerPartId" - }, { - "value" : "NO-161982682066926378535434", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ae2ad2b8-ed83-42b8-9953-3d37e224b3d7", - "partTypeInformation" : { - "manufacturerPartId" : "19073706-76", - "customerPartId" : "19073706-76", - "classification" : "component", - "nameAtManufacturer" : "Indicator right", - "nameAtCustomer" : "Indicator right" + "identification" : "4bfc2041-c683-4b0a-89ac-4dfe6a1cde57", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-378492193712566489933252", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:492781f5-62ff-4fb2-876c-3498e2844d13", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "65529521-37", - "key" : "manufacturerPartId" - }, { - "value" : "NO-378492193712566489933252", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:492781f5-62ff-4fb2-876c-3498e2844d13", - "partTypeInformation" : { - "manufacturerPartId" : "65529521-37", - "customerPartId" : "65529521-37", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror left", - "nameAtCustomer" : "Exterior mirror left" + "identification" : "269bafbb-d053-477c-a805-34056f56f598", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-835063135617554718341543", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cc8e9448-b294-46e7-8110-337e8bfa3001", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "36643162-35", - "key" : "manufacturerPartId" - }, { - "value" : "NO-835063135617554718341543", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cc8e9448-b294-46e7-8110-337e8bfa3001", - "partTypeInformation" : { - "manufacturerPartId" : "36643162-35", - "customerPartId" : "36643162-35", - "classification" : "component", - "nameAtManufacturer" : "Fender right", - "nameAtCustomer" : "Fender right" + "identification" : "af80c88c-b987-4f1f-9c52-2001ccd5bea8", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.2014", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4b2b21d0-8fed-4d32-b262-f75c5b846df8" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:393f7bf3-c73f-4b0d-86ee-f5be8aa338c4" + }, { + "quantity" : { + "quantityNumber" : "0.2341", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b86bfe10-6a4f-41be-8a00-6f11ce38702e" + } ] } }, { - "catenaXId" : "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68", - "childParts" : [ { - "quantity" : { - "quantityNumber" : "0.2014", - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } + "identification" : "497ba402-dee7-44a3-926b-5c656763265e", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003B2OM", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-712627233731926672258402", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:4b2b21d0-8fed-4d32-b262-f75c5b846df8" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:393f7bf3-c73f-4b0d-86ee-f5be8aa338c4" - }, { - "quantity" : { - "quantityNumber" : "0.2341", - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:b86bfe10-6a4f-41be-8a00-6f11ce38702e" - } ] + "catenaXId" : "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003B2OM", - "key" : "manufacturerId" - }, { - "value" : "1O222E8-43", - "key" : "manufacturerPartId" - }, { - "value" : "NO-712627233731926672258402", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:51ff7c73-34e9-45d4-816c-d92578843e68", - "partTypeInformation" : { - "manufacturerPartId" : "1O222E8-43", - "customerPartId" : "1O222E8-43", - "classification" : "component", - "nameAtManufacturer" : "Transmission", - "nameAtCustomer" : "Transmission" + "identification" : "fb29673c-48db-4b6f-b818-47c97299432f", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:393f7bf3-c73f-4b0d-86ee-f5be8aa338c4", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5eb6d06a-f873-4ada-9fac-8431ad5a600d" + } ] } }, { - "catenaXId" : "urn:uuid:393f7bf3-c73f-4b0d-86ee-f5be8aa338c4", - "childParts" : [ { - "quantity" : { - "quantityNumber" : "0.1908", - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } + "identification" : "567370eb-5008-4b06-ae19-b6482d799556", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "91908V9-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-272166193349674685284302", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:5eb6d06a-f873-4ada-9fac-8431ad5a600d" - } ] + "catenaXId" : "urn:uuid:393f7bf3-c73f-4b0d-86ee-f5be8aa338c4", + "partTypeInformation" : { + "manufacturerPartId" : "91908V9-48", + "customerPartId" : "91908V9-48", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "91908V9-48", - "key" : "manufacturerPartId" - }, { - "value" : "NO-272166193349674685284302", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:393f7bf3-c73f-4b0d-86ee-f5be8aa338c4", - "partTypeInformation" : { - "manufacturerPartId" : "91908V9-48", - "customerPartId" : "91908V9-48", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" + "identification" : "5dd112eb-2b1e-412f-954b-d6b8663ebf7b", + "aspectType" : "urn:bamm:io.catenax.batch:1.0.0#Batch", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "08243L1-15", + "key" : "manufacturerPartId" + }, { + "value" : "NO-357088932832875081865069", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5eb6d06a-f873-4ada-9fac-8431ad5a600d", + "partTypeInformation" : { + "manufacturerPartId" : "08243L1-15", + "customerPartId" : "08243L1-15", + "classification" : "component", + "nameAtManufacturer" : "NTIER Product", + "nameAtCustomer" : "NTIER Product" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "08243L1-15", - "key" : "manufacturerPartId" - }, { - "value" : "NO-357088932832875081865069", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5eb6d06a-f873-4ada-9fac-8431ad5a600d", - "partTypeInformation" : { - "manufacturerPartId" : "08243L1-15", - "customerPartId" : "08243L1-15", - "classification" : "component", - "nameAtManufacturer" : "NTIER Product", - "nameAtCustomer" : "NTIER Product" + "identification" : "666986de-f509-4ef7-9266-136087207e00", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:b86bfe10-6a4f-41be-8a00-6f11ce38702e", + "childParts" : [ ] } }, { - "catenaXId" : "urn:uuid:b86bfe10-6a4f-41be-8a00-6f11ce38702e", - "childParts" : [ ] + "identification" : "a461f5a9-a689-4170-a2eb-34e45d000433", + "aspectType" : "urn:bamm:io.catenax.batch:1.0.0#Batch", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "87729C4-85", + "key" : "manufacturerPartId" + }, { + "value" : "NO-779736395462962938391822", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b86bfe10-6a4f-41be-8a00-6f11ce38702e", + "partTypeInformation" : { + "manufacturerPartId" : "87729C4-85", + "customerPartId" : "87729C4-85", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } + } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "87729C4-85", - "key" : "manufacturerPartId" - }, { - "value" : "NO-779736395462962938391822", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:b86bfe10-6a4f-41be-8a00-6f11ce38702e", - "partTypeInformation" : { - "manufacturerPartId" : "87729C4-85", - "customerPartId" : "87729C4-85", - "classification" : "component", - "nameAtManufacturer" : "Glue", - "nameAtCustomer" : "Glue" + "identification" : "739022d8-5eab-428c-af11-2e1d0cf169a3", + "aspectType" : "urn:bamm:io.catenax.batch:1.0.0#Batch", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "35360R3-90", + "key" : "manufacturerPartId" + }, { + "value" : "NO-989414344642730064939021", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4b2b21d0-8fed-4d32-b262-f75c5b846df8", + "partTypeInformation" : { + "manufacturerPartId" : "35360R3-90", + "customerPartId" : "35360R3-90", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "35360R3-90", - "key" : "manufacturerPartId" - }, { - "value" : "NO-989414344642730064939021", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:4b2b21d0-8fed-4d32-b262-f75c5b846df8", - "partTypeInformation" : { - "manufacturerPartId" : "35360R3-90", - "customerPartId" : "35360R3-90", - "classification" : "component", - "nameAtManufacturer" : "Engineering Plastics", - "nameAtCustomer" : "Engineering Plastics" + "identification" : "88a809ef-f493-4ac3-b0fa-7efc2814ce22", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-463859804701536440600568", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fa5804f1-8d4e-437c-aca2-a5491be61758", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "54165444-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-463859804701536440600568", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:fa5804f1-8d4e-437c-aca2-a5491be61758", - "partTypeInformation" : { - "manufacturerPartId" : "54165444-59", - "customerPartId" : "54165444-59", - "classification" : "component", - "nameAtManufacturer" : "Bumper front", - "nameAtCustomer" : "Bumper front" + "identification" : "2f8e6682-c8c9-4446-8568-3261fe694737", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-138020556239094892557660", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:badddd8a-0abf-4457-9d33-6eb05a3ac0ef", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "15635759-16", - "key" : "manufacturerPartId" - }, { - "value" : "NO-138020556239094892557660", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:badddd8a-0abf-4457-9d33-6eb05a3ac0ef", - "partTypeInformation" : { - "manufacturerPartId" : "15635759-16", - "customerPartId" : "15635759-16", - "classification" : "component", - "nameAtManufacturer" : "Door r-l", - "nameAtCustomer" : "Door rear-left" + "identification" : "0ddd6674-72b7-4c65-9a42-1b67f742cb2d", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-372590292378965503190624", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8eb9285f-5b10-4d5a-af7e-44e7fb0520f1", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "43501996-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-372590292378965503190624", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8eb9285f-5b10-4d5a-af7e-44e7fb0520f1", - "partTypeInformation" : { - "manufacturerPartId" : "43501996-98", - "customerPartId" : "43501996-98", - "classification" : "component", - "nameAtManufacturer" : "Dashboard", - "nameAtCustomer" : "Dashboard" + "identification" : "a69fa8ca-1a50-4faa-ac05-03c0ca8e3a0e", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-085985814115682170912173", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7bbbc63f-ba86-4e1c-ad78-6bdb4a125783", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "73849201-61", - "key" : "manufacturerPartId" - }, { - "value" : "NO-085985814115682170912173", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7bbbc63f-ba86-4e1c-ad78-6bdb4a125783", - "partTypeInformation" : { - "manufacturerPartId" : "73849201-61", - "customerPartId" : "73849201-61", - "classification" : "component", - "nameAtManufacturer" : "Catalysator", - "nameAtCustomer" : "Catalysator" + "identification" : "2fc354c9-d99f-4cbc-991a-aef11869deff", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-515996863347176959678004", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8914a66e-b59b-405f-afff-b97d71ebece3", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "94421589-82", - "key" : "manufacturerPartId" - }, { - "value" : "NO-515996863347176959678004", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8914a66e-b59b-405f-afff-b97d71ebece3", - "partTypeInformation" : { - "manufacturerPartId" : "94421589-82", - "customerPartId" : "94421589-82", - "classification" : "component", - "nameAtManufacturer" : "Engine hood", - "nameAtCustomer" : "Engine hood" + "identification" : "79cb4200-782d-4d68-ac38-1d9fbe94b623", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-611495301031917154471195", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a0f6803c-e4dc-4cda-8ad2-91cc57868449", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "22768257-25", - "key" : "manufacturerPartId" - }, { - "value" : "NO-611495301031917154471195", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a0f6803c-e4dc-4cda-8ad2-91cc57868449", - "partTypeInformation" : { - "manufacturerPartId" : "22768257-25", - "customerPartId" : "22768257-25", - "classification" : "component", - "nameAtManufacturer" : "Bumper rear", - "nameAtCustomer" : "Bumper rear" + "identification" : "5140ea0b-7291-44ed-bf6b-0ddda40081f2", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-517537872389552545347888", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5371bcac-94d0-4254-9292-6666b8e28204", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "78744126-74", - "key" : "manufacturerPartId" - }, { - "value" : "NO-517537872389552545347888", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:5371bcac-94d0-4254-9292-6666b8e28204", - "partTypeInformation" : { - "manufacturerPartId" : "78744126-74", - "customerPartId" : "78744126-74", - "classification" : "component", - "nameAtManufacturer" : "Taillight front", - "nameAtCustomer" : "Taillight front" + "identification" : "79c32b8a-1e6c-49ae-abae-70654af4ceb1", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-931977840620838441099091", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:04b8c677-a058-4393-94c1-5c5a48a27535", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "20125432-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-931977840620838441099091", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:04b8c677-a058-4393-94c1-5c5a48a27535", - "partTypeInformation" : { - "manufacturerPartId" : "20125432-59", - "customerPartId" : "20125432-59", - "classification" : "component", - "nameAtManufacturer" : "Indicator left", - "nameAtCustomer" : "Indicator left" + "identification" : "8af66b90-bb30-4f97-857d-9104c13090a1", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-674300653336015182672214", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:36131844-36f1-426d-ba5d-a7ddcbb509d2", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "77795937-13", - "key" : "manufacturerPartId" - }, { - "value" : "NO-674300653336015182672214", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:36131844-36f1-426d-ba5d-a7ddcbb509d2", - "partTypeInformation" : { - "manufacturerPartId" : "77795937-13", - "customerPartId" : "77795937-13", - "classification" : "component", - "nameAtManufacturer" : "Steering wheel", - "nameAtCustomer" : "Steering wheel" + "identification" : "423f4373-7f38-4db3-a067-5ec954fa38f6", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-955637294337029656930454", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:309a2b1a-0061-4895-b587-f72b3d725f8f", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "81324139-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-955637294337029656930454", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:309a2b1a-0061-4895-b587-f72b3d725f8f", - "partTypeInformation" : { - "manufacturerPartId" : "81324139-23", - "customerPartId" : "81324139-23", - "classification" : "component", - "nameAtManufacturer" : "Alternator", - "nameAtCustomer" : "Alternator" + "identification" : "c2c9c688-8c91-4e1c-9f8e-5f2c19914231", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-436417650688886724541288", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a5d13a5a-5d77-4e74-810f-a9332cc19665", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "57929013-09", - "key" : "manufacturerPartId" - }, { - "value" : "NO-436417650688886724541288", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a5d13a5a-5d77-4e74-810f-a9332cc19665", - "partTypeInformation" : { - "manufacturerPartId" : "57929013-09", - "customerPartId" : "57929013-09", - "classification" : "component", - "nameAtManufacturer" : "AC compressor", - "nameAtCustomer" : "Air conditioning compressor" + "identification" : "5995ae47-99e1-4a27-b808-86ae3dfdff4a", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-533124274497426817522463", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1e35e091-3d3d-421e-9c7e-14cf1c9442a6", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "13769860-47", - "key" : "manufacturerPartId" - }, { - "value" : "NO-533124274497426817522463", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1e35e091-3d3d-421e-9c7e-14cf1c9442a6", - "partTypeInformation" : { - "manufacturerPartId" : "13769860-47", - "customerPartId" : "13769860-47", - "classification" : "component", - "nameAtManufacturer" : "Fender left", - "nameAtCustomer" : "Fender right" + "identification" : "a862c9ce-9dbd-4db9-9045-d1659efa126b", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-760041300451903722626084", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:66769f42-4905-424c-8f35-f072fab5a734", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "78141846-87", - "key" : "manufacturerPartId" - }, { - "value" : "NO-760041300451903722626084", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:66769f42-4905-424c-8f35-f072fab5a734", - "partTypeInformation" : { - "manufacturerPartId" : "78141846-87", - "customerPartId" : "78141846-87", - "classification" : "component", - "nameAtManufacturer" : "Starter motor", - "nameAtCustomer" : "Starter motor" + "identification" : "482986c3-e28c-43b0-850f-6be6b1a8d37f", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.3301", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:620b64c1-3505-4740-b64e-32da0f1b82e5" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:0ea1aa79-10d4-4df1-8a5a-5b7eafd26163" + }, { + "quantity" : { + "quantityNumber" : "0.2001", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a14aa6a4-5be6-45d2-8544-b179baeeed7d" + } ] } }, { - "catenaXId" : "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290", - "childParts" : [ { - "quantity" : { - "quantityNumber" : "0.3301", - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } + "identification" : "e8a3045b-f9b7-4c0f-bb5e-7e03f9801b75", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003B5MJ", + "key" : "manufacturerId" + }, { + "value" : "51130B5-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-210051382387574747995315", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:620b64c1-3505-4740-b64e-32da0f1b82e5" - }, { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:0ea1aa79-10d4-4df1-8a5a-5b7eafd26163" - }, { - "quantity" : { - "quantityNumber" : "0.2001", - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } - }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a14aa6a4-5be6-45d2-8544-b179baeeed7d" - } ] + "catenaXId" : "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290", + "partTypeInformation" : { + "manufacturerPartId" : "51130B5-76", + "customerPartId" : "51130B5-76", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003B5MJ", - "key" : "manufacturerId" - }, { - "value" : "51130B5-76", - "key" : "manufacturerPartId" - }, { - "value" : "NO-210051382387574747995315", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:93bb7e1e-1a1a-437a-90c4-b2830cb19290", - "partTypeInformation" : { - "manufacturerPartId" : "51130B5-76", - "customerPartId" : "51130B5-76", - "classification" : "component", - "nameAtManufacturer" : "ECU", - "nameAtCustomer" : "ECU" + "identification" : "67c8c752-f089-4a26-bc39-679a76f8db29", + "aspectType" : "urn:bamm:io.catenax.batch:1.0.0#Batch", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AXS3", + "key" : "manufacturerId" + }, { + "value" : "28658K3-56", + "key" : "manufacturerPartId" + }, { + "value" : "NO-690455882011624333983284", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:620b64c1-3505-4740-b64e-32da0f1b82e5", + "partTypeInformation" : { + "manufacturerPartId" : "28658K3-56", + "customerPartId" : "28658K3-56", + "classification" : "component", + "nameAtManufacturer" : "Glue", + "nameAtCustomer" : "Glue" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AXS3", - "key" : "manufacturerId" - }, { - "value" : "28658K3-56", - "key" : "manufacturerPartId" - }, { - "value" : "NO-690455882011624333983284", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:620b64c1-3505-4740-b64e-32da0f1b82e5", - "partTypeInformation" : { - "manufacturerPartId" : "28658K3-56", - "customerPartId" : "28658K3-56", - "classification" : "component", - "nameAtManufacturer" : "Glue", - "nameAtCustomer" : "Glue" + "identification" : "07b01f27-7d16-4a78-a0d4-d5d0343f9946", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "81235G4-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-912190603976514843251930", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a14aa6a4-5be6-45d2-8544-b179baeeed7d", + "partTypeInformation" : { + "manufacturerPartId" : "81235G4-75", + "customerPartId" : "81235G4-75", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "81235G4-75", - "key" : "manufacturerPartId" - }, { - "value" : "NO-912190603976514843251930", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a14aa6a4-5be6-45d2-8544-b179baeeed7d", - "partTypeInformation" : { - "manufacturerPartId" : "81235G4-75", - "customerPartId" : "81235G4-75", - "classification" : "component", - "nameAtManufacturer" : "Engineering Plastics", - "nameAtCustomer" : "Engineering Plastics" + "identification" : "92467ec0-d6ba-49ca-9ac5-58a6aebf4742", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:0ea1aa79-10d4-4df1-8a5a-5b7eafd26163", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1d312e57-7a0f-47c0-8586-5b5c890d0bcf" + } ] } }, { - "catenaXId" : "urn:uuid:0ea1aa79-10d4-4df1-8a5a-5b7eafd26163", - "childParts" : [ { - "quantity" : { - "quantityNumber" : "0.1908", - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:kilogram" - } + "identification" : "94423af7-f9c1-4e5c-b5f2-19894b76648d", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003B3NX", + "key" : "manufacturerId" + }, { + "value" : "34098S7-11", + "key" : "manufacturerPartId" + }, { + "value" : "NO-492327580217667430451578", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:1d312e57-7a0f-47c0-8586-5b5c890d0bcf" - } ] + "catenaXId" : "urn:uuid:0ea1aa79-10d4-4df1-8a5a-5b7eafd26163", + "partTypeInformation" : { + "manufacturerPartId" : "34098S7-11", + "customerPartId" : "34098S7-11", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003B3NX", - "key" : "manufacturerId" - }, { - "value" : "34098S7-11", - "key" : "manufacturerPartId" - }, { - "value" : "NO-492327580217667430451578", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:0ea1aa79-10d4-4df1-8a5a-5b7eafd26163", - "partTypeInformation" : { - "manufacturerPartId" : "34098S7-11", - "customerPartId" : "34098S7-11", - "classification" : "component", - "nameAtManufacturer" : "Sensor", - "nameAtCustomer" : "Sensor" + "identification" : "7a6263a5-1a63-42c2-a283-ed3ca9e88896", + "aspectType" : "urn:bamm:io.catenax.batch:1.0.0#Batch", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003B0Q0", + "key" : "manufacturerId" + }, { + "value" : "78393J3-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-259583605850965985909486", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1d312e57-7a0f-47c0-8586-5b5c890d0bcf", + "partTypeInformation" : { + "manufacturerPartId" : "78393J3-74", + "customerPartId" : "78393J3-74", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003B0Q0", - "key" : "manufacturerId" - }, { - "value" : "78393J3-74", - "key" : "manufacturerPartId" - }, { - "value" : "NO-259583605850965985909486", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:1d312e57-7a0f-47c0-8586-5b5c890d0bcf", - "partTypeInformation" : { - "manufacturerPartId" : "78393J3-74", - "customerPartId" : "78393J3-74", - "classification" : "component", - "nameAtManufacturer" : "Engineering Plastics", - "nameAtCustomer" : "Engineering Plastics" + "identification" : "c2e251a9-997c-4bc2-995e-c269b6712854", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:ceb6b964-5779-49c1-b5e9-0ee70528fcbd", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a4a26b9c-9460-4cc5-8645-85916b86adb0" + } ] } }, { - "catenaXId" : "urn:uuid:ceb6b964-5779-49c1-b5e9-0ee70528fcbd", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } + "identification" : "c0d260c1-e4ad-4d4a-a238-cab2d52266c0", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-297452866581906730261974", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:a4a26b9c-9460-4cc5-8645-85916b86adb0" - } ] + "catenaXId" : "urn:uuid:ceb6b964-5779-49c1-b5e9-0ee70528fcbd", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "95657362-64", - "key" : "manufacturerPartId" - }, { - "value" : "NO-297452866581906730261974", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:ceb6b964-5779-49c1-b5e9-0ee70528fcbd", - "partTypeInformation" : { - "manufacturerPartId" : "33740332-54", - "customerPartId" : "33740332-54", - "classification" : "component", - "nameAtManufacturer" : "Door f-r", - "nameAtCustomer" : "Door front-right" + "identification" : "1ed4a600-17e0-4d67-bf73-d9efd21d5e3e", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-146729557079961289905282", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a4a26b9c-9460-4cc5-8645-85916b86adb0", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-146729557079961289905282", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a4a26b9c-9460-4cc5-8645-85916b86adb0", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" + "identification" : "614af313-866c-44bd-8d39-2ecd33b643a6", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-625635229566122009930947", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7b87f5d6-f75e-40f1-a439-779ae9f57a21", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "28673126-98", - "key" : "manufacturerPartId" - }, { - "value" : "NO-625635229566122009930947", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:7b87f5d6-f75e-40f1-a439-779ae9f57a21", - "partTypeInformation" : { - "manufacturerPartId" : "28673126-98", - "customerPartId" : "28673126-98", - "classification" : "component", - "nameAtManufacturer" : "Door r-r", - "nameAtCustomer" : "Door rear-right" + "identification" : "ced81a6a-f4b8-4bbf-bfc6-c802c129aaae", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-379150999339751935779974", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9940dd40-a292-4a27-9733-08b1ca750149", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "12093297-03", - "key" : "manufacturerPartId" - }, { - "value" : "NO-379150999339751935779974", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:9940dd40-a292-4a27-9733-08b1ca750149", - "partTypeInformation" : { - "manufacturerPartId" : "12093297-03", - "customerPartId" : "12093297-03", - "classification" : "component", - "nameAtManufacturer" : "Axle part front", - "nameAtCustomer" : "Axle part front" + "identification" : "4ef38a9e-a909-448b-a78d-dac06a468228", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-947622490362370933766973", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a1082992-cc3b-4da1-af6b-aa692ed71461", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "85023955-75", - "key" : "manufacturerPartId" - }, { - "value" : "NO-947622490362370933766973", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:a1082992-cc3b-4da1-af6b-aa692ed71461", - "partTypeInformation" : { - "manufacturerPartId" : "85023955-75", - "customerPartId" : "85023955-75", - "classification" : "component", - "nameAtManufacturer" : "Tailgate", - "nameAtCustomer" : "Tailgate" + "identification" : "6309adb1-7769-4a50-bd3d-3a434a1566d1", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:3e300930-0e1c-459c-8914-1ac631176716", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8f9d8c7f-6d7a-48f1-9959-9fa3a1a7a891" + } ] } }, { - "catenaXId" : "urn:uuid:3e300930-0e1c-459c-8914-1ac631176716", - "childParts" : [ { - "quantity" : { - "quantityNumber" : 1, - "measurementUnit" : { - "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", - "lexicalValue" : "unit:piece" - } + "identification" : "40ffae85-2984-4581-af1e-4fffd6981641", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003CSGV", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-066856325264319536740496", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" }, - "lifecycleContext" : "AsBuilt", - "createdOn" : "2022-02-03T14:48:54.709Z", - "lastModifiedOn" : "2022-02-03T14:48:54.709Z", - "childCatenaXId" : "urn:uuid:8f9d8c7f-6d7a-48f1-9959-9fa3a1a7a891" - } ] - }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003CSGV", - "key" : "manufacturerId" - }, { - "value" : "22782277-50", - "key" : "manufacturerPartId" - }, { - "value" : "NO-066856325264319536740496", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:3e300930-0e1c-459c-8914-1ac631176716", - "partTypeInformation" : { - "manufacturerPartId" : "22782277-50", - "customerPartId" : "22782277-50", - "classification" : "component", - "nameAtManufacturer" : "Door f-l", - "nameAtCustomer" : "Door front-left" + "catenaXId" : "urn:uuid:3e300930-0e1c-459c-8914-1ac631176716", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000000BJTL", - "key" : "manufacturerId" - }, { - "value" : "95657762-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-175671273535589941197943", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8f9d8c7f-6d7a-48f1-9959-9fa3a1a7a891", - "partTypeInformation" : { - "manufacturerPartId" : "95657762-59", - "customerPartId" : "95657762-59", - "classification" : "component", - "nameAtManufacturer" : "Door Key", - "nameAtCustomer" : "Door Key" + "identification" : "0b5c86dc-711d-42a9-a682-9a24c3946290", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000000BJTL", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-175671273535589941197943", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8f9d8c7f-6d7a-48f1-9959-9fa3a1a7a891", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "00871379-44", - "key" : "manufacturerPartId" - }, { - "value" : "NO-732656251619472638970521", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:8e916bb5-34cb-48cc-bb30-3dea756a25b0", - "partTypeInformation" : { - "manufacturerPartId" : "00871379-44", - "customerPartId" : "00871379-44", - "classification" : "component", - "nameAtManufacturer" : "Chassis", - "nameAtCustomer" : "Chassis" + "identification" : "3b2577c3-9de6-42ba-8ea2-cc1701db75e7", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-732656251619472638970521", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8e916bb5-34cb-48cc-bb30-3dea756a25b0", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "58471477-24", - "key" : "manufacturerPartId" - }, { - "value" : "NO-552006940575520649122391", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:6c7bdfd8-7116-46da-b8e2-7322acd64042", - "partTypeInformation" : { - "manufacturerPartId" : "58471477-24", - "customerPartId" : "58471477-24", - "classification" : "component", - "nameAtManufacturer" : "Exterior mirror right", - "nameAtCustomer" : "Exterior mirror right" + "identification" : "a97b1522-e2f7-45e1-9f5c-91334a38a3fe", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-552006940575520649122391", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6c7bdfd8-7116-46da-b8e2-7322acd64042", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "10030939-59", - "key" : "manufacturerPartId" - }, { - "value" : "NO-692153553533989280372178", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:c4cd2818-b616-4a28-b327-7e7e449fbdae", - "partTypeInformation" : { - "manufacturerPartId" : "10030939-59", - "customerPartId" : "10030939-59", - "classification" : "component", - "nameAtManufacturer" : "Engine", - "nameAtCustomer" : "Engine" + "identification" : "0c0f30f8-f78f-42f5-bed9-4117cd9978b9", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "10030939-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-692153553533989280372178", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c4cd2818-b616-4a28-b327-7e7e449fbdae", + "partTypeInformation" : { + "manufacturerPartId" : "10030939-59", + "customerPartId" : "10030939-59", + "classification" : "component", + "nameAtManufacturer" : "Engine", + "nameAtCustomer" : "Engine" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "45863316-60", - "key" : "manufacturerPartId" - }, { - "value" : "NO-270108677396418821910638", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:98c92d24-0d86-4dfa-97bb-1f67794fc9f9", - "partTypeInformation" : { - "manufacturerPartId" : "45863316-60", - "customerPartId" : "45863316-60", - "classification" : "component", - "nameAtManufacturer" : "Tires", - "nameAtCustomer" : "Tires" + "identification" : "63758acc-9390-43cb-b238-a719a269c177", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-270108677396418821910638", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:98c92d24-0d86-4dfa-97bb-1f67794fc9f9", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "45415162-57", - "key" : "manufacturerPartId" - }, { - "value" : "NO-919753113770584725248439", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e1ea599a-255d-4abf-a385-70f63cbe9794", - "partTypeInformation" : { - "manufacturerPartId" : "45415162-57", - "customerPartId" : "45415162-57", - "classification" : "component", - "nameAtManufacturer" : "Led headlight", - "nameAtCustomer" : "Led headlight" + "identification" : "0e2b88ae-ec7c-4a71-928c-aea614c551fb", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-919753113770584725248439", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e1ea599a-255d-4abf-a385-70f63cbe9794", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "61184040-23", - "key" : "manufacturerPartId" - }, { - "value" : "NO-162235183519918615040507", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:cd55d855-754f-4a60-935a-88768f0ed2fb", - "partTypeInformation" : { - "manufacturerPartId" : "61184040-23", - "customerPartId" : "61184040-23", - "classification" : "component", - "nameAtManufacturer" : "Taillight rear", - "nameAtCustomer" : "Taillight rear" + "identification" : "db900a70-ada5-49ae-9985-f27af40a97d6", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-162235183519918615040507", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cd55d855-754f-4a60-935a-88768f0ed2fb", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } } }, { - "localIdentifiers" : [ { - "value" : "BPNL00000003AYRE", - "key" : "manufacturerId" - }, { - "value" : "32494586-73", - "key" : "manufacturerPartId" - }, { - "value" : "NO-142999510701784902291319", - "key" : "partInstanceId" - } ], - "manufacturingInformation" : { - "date" : "2022-02-04T14:48:54", - "country" : "DEU" - }, - "catenaXId" : "urn:uuid:e0566a95-a34f-44e0-a562-f5db3367f7f3", - "partTypeInformation" : { - "manufacturerPartId" : "32494586-73", - "customerPartId" : "32494586-73", - "classification" : "component", - "nameAtManufacturer" : "Differential Gear", - "nameAtCustomer" : "Differential Gear" + "identification" : "9db130ba-9d29-4af3-a942-4088c51f312b", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003AYRE", + "key" : "manufacturerId" + }, { + "value" : "32494586-73", + "key" : "manufacturerPartId" + }, { + "value" : "NO-142999510701784902291319", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e0566a95-a34f-44e0-a562-f5db3367f7f3", + "partTypeInformation" : { + "manufacturerPartId" : "32494586-73", + "customerPartId" : "32494586-73", + "classification" : "component", + "nameAtManufacturer" : "Differential Gear", + "nameAtCustomer" : "Differential Gear" + } } } ] } \ No newline at end of file From 5545fb9b3e64f1991b94d74ee1ec292a5dd1771e Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Wed, 14 Dec 2022 15:57:28 +0100 Subject: [PATCH 13/62] feat(fix):[TRI-1002] ids to process based on direction --- .../aaswrapper/job/delegate/RelationshipDelegate.java | 11 ++++++----- .../eclipse/tractusx/irs/edc/RelationshipAspect.java | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/RelationshipDelegate.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/RelationshipDelegate.java index c5c3e5a571..6b43426272 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/RelationshipDelegate.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/RelationshipDelegate.java @@ -33,6 +33,7 @@ import org.eclipse.tractusx.irs.component.Relationship; import org.eclipse.tractusx.irs.component.Tombstone; import org.eclipse.tractusx.irs.component.enums.AspectType; +import org.eclipse.tractusx.irs.component.enums.Direction; import org.eclipse.tractusx.irs.component.enums.ProcessStep; import org.eclipse.tractusx.irs.edc.EdcSubmodelFacade; import org.eclipse.tractusx.irs.edc.RelationshipAspect; @@ -64,7 +65,7 @@ public ItemContainer process(final ItemContainer.ItemContainerBuilder itemContai shell -> shell.findRelationshipEndpointAddresses(AspectType.fromValue(relationshipAspect.name())).forEach(address -> { try { final List relationships = submodelFacade.getRelationships(address, relationshipAspect); - final List idsToProcess = getIdsToProcess(relationships, relationshipAspect); + final List idsToProcess = getIdsToProcess(relationships, relationshipAspect.getDirection()); log.info("Processing Relationships with {} items", idsToProcess.size()); @@ -84,10 +85,10 @@ public ItemContainer process(final ItemContainer.ItemContainerBuilder itemContai return next(itemContainerBuilder, jobData, aasTransferProcess, itemId); } - private List getIdsToProcess(final List relationships, final RelationshipAspect relationshipAspect) { - return switch (relationshipAspect) { - case AssemblyPartRelationship, SingleLevelBomAsPlanned -> getChildIds(relationships); - case SingleLevelUsageAsBuilt -> getParentIds(relationships); + private List getIdsToProcess(final List relationships, final Direction direction) { + return switch (direction) { + case DOWNWARD -> getChildIds(relationships); + case UPWARD -> getParentIds(relationships); }; } diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/RelationshipAspect.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/RelationshipAspect.java index efc8143c39..d9fc5f789c 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/RelationshipAspect.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/RelationshipAspect.java @@ -32,12 +32,12 @@ * Relationship aspect types */ @SuppressWarnings("PMD.FieldNamingConventions") +@Getter public enum RelationshipAspect { SingleLevelBomAsPlanned(SingleLevelBomAsPlanned.class, BomLifecycle.AS_PLANNED, Direction.DOWNWARD), AssemblyPartRelationship(AssemblyPartRelationship.class, BomLifecycle.AS_BUILT, Direction.DOWNWARD), SingleLevelUsageAsBuilt(SingleLevelUsageAsBuilt.class, BomLifecycle.AS_BUILT, Direction.UPWARD); - @Getter private final Class submodelClazz; private final BomLifecycle bomLifecycle; private final Direction direction; From 76b47bf67941e7d2e841e0fac3683bb9d9a3d8ea Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Wed, 14 Dec 2022 15:59:17 +0100 Subject: [PATCH 14/62] feat(fix):[TRI-1002] jdk17 toList --- .../irs/aaswrapper/job/delegate/RelationshipDelegate.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/RelationshipDelegate.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/RelationshipDelegate.java index 6b43426272..6fd8d5f1b8 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/RelationshipDelegate.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/job/delegate/RelationshipDelegate.java @@ -22,7 +22,6 @@ package org.eclipse.tractusx.irs.aaswrapper.job.delegate; import java.util.List; -import java.util.stream.Collectors; import lombok.extern.slf4j.Slf4j; import org.eclipse.tractusx.irs.aaswrapper.job.AASTransferProcess; @@ -96,7 +95,7 @@ private List getParentIds(final List relationships) { return relationships.stream() .map(Relationship::getCatenaXId) .map(GlobalAssetIdentification::getGlobalAssetId) - .collect(Collectors.toList()); + .toList(); } private List getChildIds(final List relationships) { @@ -104,6 +103,6 @@ private List getChildIds(final List relationships) { .map(Relationship::getLinkedItem) .map(LinkedItem::getChildCatenaXId) .map(GlobalAssetIdentification::getGlobalAssetId) - .collect(Collectors.toList()); + .toList(); } } From 948fbb3d5c24af97dfad46cf414e8a795f6c22cf Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Wed, 14 Dec 2022 16:31:54 +0100 Subject: [PATCH 15/62] fix(irs-api):[TRI-559] Change assert to isBeforeOrEqual --- .../services/IrsItemGraphQueryServiceSpringBootTest.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) 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 cae5d83df5..ea272f7c73 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 @@ -150,7 +150,7 @@ void registerJobWithDepthShouldBuildTreeUntilGivenDepth() { } @Test - void cancelJobById() throws InterruptedException { + void cancelJobById() { final String idAsString = String.valueOf(jobId); final MultiTransferJob multiTransferJob = MultiTransferJob.builder() .job(Job.builder() @@ -167,9 +167,6 @@ void cancelJobById() throws InterruptedException { jobStore.create(multiTransferJob); - // Simulate job processing - Thread.sleep(5); - assertThat(service.cancelJobById(jobId)).isNotNull(); final Optional fetchedJob = jobStore.find(idAsString); @@ -179,7 +176,7 @@ void cancelJobById() throws InterruptedException { assertThat(state).isEqualTo(JobState.CANCELED); final ZonedDateTime lastModifiedOn = fetchedJob.get().getJob().getLastModifiedOn(); - assertThat(lastModifiedOn).isNotNull().isBefore(ZonedDateTime.now()); + assertThat(lastModifiedOn).isNotNull().isBeforeOrEqualTo(ZonedDateTime.now()); } @Test From 10b25148c719e863692abd4aa4a4b80d7d05c06b Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Thu, 15 Dec 2022 09:18:50 +0100 Subject: [PATCH 16/62] fix(workflows):[-] Fix refusing to merge unrelated histories --- .github/workflows/synch-env-branch.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/synch-env-branch.yml b/.github/workflows/synch-env-branch.yml index 0e534d7054..81d07ba6d0 100644 --- a/.github/workflows/synch-env-branch.yml +++ b/.github/workflows/synch-env-branch.yml @@ -4,6 +4,7 @@ on: push: branches: - main + - fix/branch-sync-action jobs: sync-branches: @@ -20,7 +21,7 @@ jobs: git config user.email github-actions@github.com git fetch --no-tags --progress git checkout --progress -b catena-x-environments origin/catena-x-environments - git merge origin/main + git merge origin/main --allow-unrelated-histories git push env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 8188c23128afd8c1c0bd025c799d40cbe64c8ca5 Mon Sep 17 00:00:00 2001 From: ds-alexander-bulgakov Date: Thu, 15 Dec 2022 09:20:03 +0100 Subject: [PATCH 17/62] THI-739: added expected jsons for test TRI-983 --- .../TRI-983-expected-relationships.json | 2803 +++++ .../TRI-983-expected-submodels.json | 9076 +++++++++++++++++ 2 files changed, 11879 insertions(+) create mode 100644 cucumber-tests/src/test/resources/expected-files/TRI-983-expected-relationships.json create mode 100644 cucumber-tests/src/test/resources/expected-files/TRI-983-expected-submodels.json diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-983-expected-relationships.json b/cucumber-tests/src/test/resources/expected-files/TRI-983-expected-relationships.json new file mode 100644 index 0000000000..6f1c976982 --- /dev/null +++ b/cucumber-tests/src/test/resources/expected-files/TRI-983-expected-relationships.json @@ -0,0 +1,2803 @@ +{ + "relationships" : [ { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4bd6d020-ee47-45ae-ac30-717603a35fe1" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5c6d5a4b-3cca-45f0-8204-2d42bbf0f847" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4fe71a9f-dc0d-425e-8d93-eb0143254bed" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:754ee594-ba0e-4c65-8169-d67ef114bd2c" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a38b7fab-6e72-47e6-ad03-bae442072134" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:fe2ebe12-b846-4f00-8546-a9d430be7425" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d095c65a-e632-4b50-af1f-1f29c122aa03" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5c3d9f2f-d933-4fac-8c23-88adc7943c67" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4fd5306d-0302-48db-9f42-b43a15e94f33" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:893e9b93-7ea2-4965-a163-4271011c78ba" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c73f6d34-42af-481d-8685-6248951f992a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:51b4304b-43b9-4506-b9b0-85b270c95e92" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:690ea584-42ba-4905-a41c-bd75cab177e5" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d08ce285-be90-4d3b-8ded-71a1d87db410" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9bf8955e-1a38-472b-a9f7-559724979546" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:78720ee2-e944-4d30-acd0-54128f951ea0" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:57a9cdfd-c188-4c51-9ce0-53e2d5d2641e" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8858e724-552f-4207-afc4-9244f454c524" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:83e8f14f-331c-491c-90e0-bea81606bd11" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a94445fe-135b-4962-8902-a0cdc6bddfa4" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:85ef35e7-5724-4ab2-a675-5b384e0762d5" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:74b2d602-6b75-45d1-96c6-4224ba2a0657" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8a941275-4c8d-4593-9623-ad365fc50976" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c6c831bb-d6a8-487a-86f0-03afaf2ea8a8" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8f0d942e-0cdc-4998-92ea-3195bd67994d" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:04639340-31bc-47c4-a16c-e26ea785d447" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d292e706-eb66-41ce-9bd4-bfb8d3061207" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3d28c1cf-32f3-4156-abb8-7d2a307c30f4" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a525aa1f-d015-457e-a4cc-87e5ec1f77b9" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5ae0a6cd-e60c-49fb-97ac-d1e8f4c51379" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ef4d3d85-de67-4750-bea6-d139113eebc9" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:70e32d55-c470-4679-a2c4-acc77503b998" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a309422e-f5a4-4656-9158-91b851da9aa1" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:754ee594-ba0e-4c65-8169-d67ef114bd2c", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b7d4e0a6-c23c-4ace-8419-d07053d9a481" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:754ee594-ba0e-4c65-8169-d67ef114bd2c", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ee29b0cb-2418-4829-b4a1-4cf5e7f84c0c" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:754ee594-ba0e-4c65-8169-d67ef114bd2c", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3ffa97ff-b3a7-4946-804b-0a9a2268a285" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:b7d4e0a6-c23c-4ace-8419-d07053d9a481", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:11d3b806-9c7c-475f-8a96-c83869acf90b" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d095c65a-e632-4b50-af1f-1f29c122aa03", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d095c65a-e632-4b50-af1f-1f29c122aa03", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d095c65a-e632-4b50-af1f-1f29c122aa03", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d095c65a-e632-4b50-af1f-1f29c122aa03", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d095c65a-e632-4b50-af1f-1f29c122aa03", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d095c65a-e632-4b50-af1f-1f29c122aa03", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:71f8924f-1ab1-4f73-8390-ffd8ddb5ab3e" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:95c25ff5-979a-4af9-955d-1741a653fd2c" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9e09aa02-0b08-433f-9136-f709dd5e5418" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:97e8cdb9-cb0c-439d-802c-7f5e7353be7b" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8243d214-a491-43fd-996c-514e2236d4a2" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:f4486e59-35b0-4a31-8c98-281249457e2b" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:fdec0351-5da2-41bb-a2e0-79c009adca91" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6639016a-45c8-4229-a279-12985faba2a0" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ecb22ed2-976e-4474-aa30-6c6ae875b926" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:29974c7d-eae7-4e80-a123-9361d4805077" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a631fc6c-21ad-4b5e-adc2-b3849f27e355" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:71f8924f-1ab1-4f73-8390-ffd8ddb5ab3e", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:95c25ff5-979a-4af9-955d-1741a653fd2c", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:9e09aa02-0b08-433f-9136-f709dd5e5418", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:97e8cdb9-cb0c-439d-802c-7f5e7353be7b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:8243d214-a491-43fd-996c-514e2236d4a2", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:f4486e59-35b0-4a31-8c98-281249457e2b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:fdec0351-5da2-41bb-a2e0-79c009adca91", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:6639016a-45c8-4229-a279-12985faba2a0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:29974c7d-eae7-4e80-a123-9361d4805077", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:a631fc6c-21ad-4b5e-adc2-b3849f27e355", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:884cf2ec-c8ad-4678-a0f4-f0839d3681cc" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:18284132-42aa-4e63-8189-f5c68a0542ef" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:f0df98cc-56ea-4475-b479-3cf81014b843" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1351d63d-e45b-401a-9f18-6d385f0eeb38" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:f0fcfe14-11a8-43a7-ad38-82e25484ac10" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3662f179-c32a-44c3-b3af-d036994008ec" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:fd49537d-8c05-4d31-a649-f81f754a33e5" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:678759de-6dbb-447e-9ff8-71aeca28a2dd" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:061445d9-7ccf-4fed-ae0e-4998ff22c068" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:efb8d8a1-7d8b-4f0a-89cf-4077ab67651d" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:884cf2ec-c8ad-4678-a0f4-f0839d3681cc", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:18284132-42aa-4e63-8189-f5c68a0542ef", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:f0df98cc-56ea-4475-b479-3cf81014b843", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:1351d63d-e45b-401a-9f18-6d385f0eeb38", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:f0fcfe14-11a8-43a7-ad38-82e25484ac10", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:3662f179-c32a-44c3-b3af-d036994008ec", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:fd49537d-8c05-4d31-a649-f81f754a33e5", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:678759de-6dbb-447e-9ff8-71aeca28a2dd", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:061445d9-7ccf-4fed-ae0e-4998ff22c068", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:efb8d8a1-7d8b-4f0a-89cf-4077ab67651d", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:2582d228-057a-4254-a50f-e78e523eb7fd" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:64cd8d10-3c75-44b7-a5a0-b6f032f33ee3" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e03abe74-c4bc-4a0d-a274-a234e0931b69" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e3dd017f-ba88-4295-87af-4c5072c5cfd0" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:65d609c0-983e-4503-9d0e-36a2f5dbe6ca" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ec3ff3c1-45d4-4d2f-9ed0-ccbe0fdd848f" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e53eb022-5127-4e0c-a3ca-e3e18f3631d9" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:04d2f8d6-3a15-4fba-9b3d-06b149a1f660" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:abdda3ec-4f4b-4502-aae0-5abad86739da" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:69ba8e60-78ff-4008-bbcd-dea172bd768c" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:2582d228-057a-4254-a50f-e78e523eb7fd", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:64cd8d10-3c75-44b7-a5a0-b6f032f33ee3", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:e03abe74-c4bc-4a0d-a274-a234e0931b69", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:e3dd017f-ba88-4295-87af-4c5072c5cfd0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:65d609c0-983e-4503-9d0e-36a2f5dbe6ca", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:ec3ff3c1-45d4-4d2f-9ed0-ccbe0fdd848f", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:e53eb022-5127-4e0c-a3ca-e3e18f3631d9", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:04d2f8d6-3a15-4fba-9b3d-06b149a1f660", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:abdda3ec-4f4b-4502-aae0-5abad86739da", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:69ba8e60-78ff-4008-bbcd-dea172bd768c", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:268554e4-0a92-4159-a7c9-f25f48ec5df4" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d53afa44-ea29-49bc-8ab3-fb2b51aceb01" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:7dc0fad6-e458-4c94-a75e-fa5d55da3899" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3c3a4802-4456-4db4-9900-2d71573001a2" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:54a3dc30-2fc5-453b-bd4e-56505f349df7" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e3bac071-b7dd-4760-bc34-9b27fa82758c" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a6986b46-3bc1-4a1a-8548-042ed033e392" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a27645c5-b79d-4982-b456-9c5b46aacd27" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:2b44d488-1f07-465b-991e-345592122e02" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9c9c5a3a-9164-4559-a5f0-500e802fd9d3" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:268554e4-0a92-4159-a7c9-f25f48ec5df4", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d53afa44-ea29-49bc-8ab3-fb2b51aceb01", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:7dc0fad6-e458-4c94-a75e-fa5d55da3899", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:3c3a4802-4456-4db4-9900-2d71573001a2", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:54a3dc30-2fc5-453b-bd4e-56505f349df7", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:e3bac071-b7dd-4760-bc34-9b27fa82758c", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:a6986b46-3bc1-4a1a-8548-042ed033e392", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:a27645c5-b79d-4982-b456-9c5b46aacd27", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:2b44d488-1f07-465b-991e-345592122e02", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:9c9c5a3a-9164-4559-a5f0-500e802fd9d3", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:bf4f2792-7fa8-479e-b55b-98ed45c0220f" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:bd57f26a-ff24-48cd-b86b-2538d18ed364" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:f98d9e49-b6b0-401a-83cc-51c584248fcd" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:98c1d2e9-dcf8-4cca-baf1-ac0fc92d32ab" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8d1a3b46-8254-47e8-bd85-9c29ff892210" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8a78453d-e44c-4e85-a829-d15985a1144b" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:7b1544d0-7b10-4184-9ffa-55e492a0fd38" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c6932d1d-7964-4bf3-ac68-0e17854c68e5" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:816f7af7-9ccc-4678-844a-8b648118d44e" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:cbec4ede-2ee2-4549-8cd4-f26846d69b68" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:bf4f2792-7fa8-479e-b55b-98ed45c0220f", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:bd57f26a-ff24-48cd-b86b-2538d18ed364", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:f98d9e49-b6b0-401a-83cc-51c584248fcd", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:98c1d2e9-dcf8-4cca-baf1-ac0fc92d32ab", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:8d1a3b46-8254-47e8-bd85-9c29ff892210", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:8a78453d-e44c-4e85-a829-d15985a1144b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:7b1544d0-7b10-4184-9ffa-55e492a0fd38", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c6932d1d-7964-4bf3-ac68-0e17854c68e5", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:816f7af7-9ccc-4678-844a-8b648118d44e", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cbec4ede-2ee2-4549-8cd4-f26846d69b68", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:94894691-ed16-4a78-817a-728c8cc2ad8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:24069836-0afd-45eb-a20f-51adb0b0e515" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b78ca8e4-fbcc-479e-95c5-b9a0ec738c08" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:97fb2be2-303b-4047-999f-99e40d2ad575" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:380ff435-4193-477e-b95c-6acc0546cc45" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ff79a175-e9ea-49b9-91ae-919c37709129" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c0d1ebba-0bed-498e-9b78-a83d2feeb899" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:15591ad7-24ca-457a-9f7c-45a788afa8c3" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:454c15e8-262b-4adb-8821-c0454afb3bac" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:f13bd078-6f08-489d-aa4b-ff70f0e704a8" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:94894691-ed16-4a78-817a-728c8cc2ad8a", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:24069836-0afd-45eb-a20f-51adb0b0e515", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:b78ca8e4-fbcc-479e-95c5-b9a0ec738c08", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:97fb2be2-303b-4047-999f-99e40d2ad575", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:380ff435-4193-477e-b95c-6acc0546cc45", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:ff79a175-e9ea-49b9-91ae-919c37709129", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c0d1ebba-0bed-498e-9b78-a83d2feeb899", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:15591ad7-24ca-457a-9f7c-45a788afa8c3", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:454c15e8-262b-4adb-8821-c0454afb3bac", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:f13bd078-6f08-489d-aa4b-ff70f0e704a8", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:893e9b93-7ea2-4965-a163-4271011c78ba", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:db09e9f4-58db-4cd0-a0b6-4b24fb345c8f" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:893e9b93-7ea2-4965-a163-4271011c78ba", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a61c90b6-458e-4c50-8ca4-1a92b10560bb" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:893e9b93-7ea2-4965-a163-4271011c78ba", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4d2b3c50-d184-49b7-abee-c15e2416d360" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:db09e9f4-58db-4cd0-a0b6-4b24fb345c8f", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b461b27e-e90e-404d-8d1d-2ba4668fe826" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:78720ee2-e944-4d30-acd0-54128f951ea0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:2c126e78-373f-424b-b281-b1d86cdbcb05" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:8858e724-552f-4207-afc4-9244f454c524", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:f2895813-baed-4db2-a67d-ddb987ca7a45" + }, + "aspectType" : "AssemblyPartRelationship" + } ] +} \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-983-expected-submodels.json b/cucumber-tests/src/test/resources/expected-files/TRI-983-expected-submodels.json new file mode 100644 index 0000000000..ad0174d2fb --- /dev/null +++ b/cucumber-tests/src/test/resources/expected-files/TRI-983-expected-submodels.json @@ -0,0 +1,9076 @@ +{ + "submodels" : [ { + "identification" : "18bf3919-4c59-43b5-a0d2-2d97a3c6c29b", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c6c831bb-d6a8-487a-86f0-03afaf2ea8a8" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:78720ee2-e944-4d30-acd0-54128f951ea0" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8858e724-552f-4207-afc4-9244f454c524" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4fe71a9f-dc0d-425e-8d93-eb0143254bed" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a38b7fab-6e72-47e6-ad03-bae442072134" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a309422e-f5a4-4656-9158-91b851da9aa1" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d08ce285-be90-4d3b-8ded-71a1d87db410" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8f0d942e-0cdc-4998-92ea-3195bd67994d" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a525aa1f-d015-457e-a4cc-87e5ec1f77b9" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:fe2ebe12-b846-4f00-8546-a9d430be7425" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d292e706-eb66-41ce-9bd4-bfb8d3061207" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:74b2d602-6b75-45d1-96c6-4224ba2a0657" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:04639340-31bc-47c4-a16c-e26ea785d447" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8a941275-4c8d-4593-9623-ad365fc50976" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:51b4304b-43b9-4506-b9b0-85b270c95e92" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5c6d5a4b-3cca-45f0-8204-2d42bbf0f847" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:83e8f14f-331c-491c-90e0-bea81606bd11" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9bf8955e-1a38-472b-a9f7-559724979546" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ef4d3d85-de67-4750-bea6-d139113eebc9" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5ae0a6cd-e60c-49fb-97ac-d1e8f4c51379" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3d28c1cf-32f3-4156-abb8-7d2a307c30f4" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4fd5306d-0302-48db-9f42-b43a15e94f33" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:70e32d55-c470-4679-a2c4-acc77503b998" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:690ea584-42ba-4905-a41c-bd75cab177e5" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4bd6d020-ee47-45ae-ac30-717603a35fe1" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c73f6d34-42af-481d-8685-6248951f992a" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a94445fe-135b-4962-8902-a0cdc6bddfa4" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:57a9cdfd-c188-4c51-9ce0-53e2d5d2641e" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:85ef35e7-5724-4ab2-a675-5b384e0762d5" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:893e9b93-7ea2-4965-a163-4271011c78ba" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:754ee594-ba0e-4c65-8169-d67ef114bd2c" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d095c65a-e632-4b50-af1f-1f29c122aa03" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5c3d9f2f-d933-4fac-8c23-88adc7943c67" + } ] + } + }, { + "identification" : "35cc4b13-dbe8-4305-b8b6-4df951db1ac0", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "QM-11", + "key" : "manufacturerPartId" + }, { + "value" : "OMBNQDTDYELARLXEJ", + "key" : "partInstanceId" + }, { + "value" : "OMBNQDTDYELARLXEJ", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2014-12-25T13:05:34.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:aeae35a2-15c0-4044-a58e-6d4238e8bb7b", + "partTypeInformation" : { + "manufacturerPartId" : "QM-11", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Fully Electric" + } + } + }, { + "identification" : "5719f37e-5aaf-4ea6-83a0-23d736d45fd7", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "component" : [ { + "materialName" : "Iron", + "recycledContent" : 17, + "materialClass" : "1.1", + "quantity" : { + "materialValue" : 327.6, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "IR334" + }, { + "materialName" : "Polyethylen", + "recycledContent" : 47, + "materialClass" : "5.5.1", + "quantity" : { + "materialValue" : 163.8, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PE221" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 28, + "materialClass" : "5.5.1", + "quantity" : { + "materialValue" : 40.95, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Aluminium", + "recycledContent" : 0, + "materialClass" : "2.1", + "quantity" : { + "materialValue" : 286.65, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "ALU331" + }, { + "materialName" : "Kerosene waxes and hydrocarbon waxes, oxidized, lithium salts", + "recycledContent" : 49, + "materialClass" : "0.7", + "quantity" : { + "materialValue" : 109.2, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "W123" + }, { + "materialName" : "Glue", + "recycledContent" : 3, + "materialClass" : "6.2", + "quantity" : { + "materialValue" : 54.6, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 44, + "materialClass" : "1.1.2", + "quantity" : { + "materialValue" : 382.2, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Cooper", + "recycledContent" : 89, + "materialClass" : "3.1", + "quantity" : { + "materialValue" : 250.2, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Rubber", + "recycledContent" : 75, + "materialClass" : "5.3", + "quantity" : { + "materialValue" : 7.8, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "R22" + }, { + "materialName" : "Textiles", + "recycledContent" : 20, + "materialClass" : "5.5.2", + "quantity" : { + "materialValue" : 5.12, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "TEX1" + } ] + } + }, { + "identification" : "1c7ab6bd-b738-440f-83e1-236d3ef3edc4", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "12093297-03", + "key" : "manufacturerPartId" + }, { + "value" : "NO-268546160691085048570063", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4bd6d020-ee47-45ae-ac30-717603a35fe1", + "partTypeInformation" : { + "manufacturerPartId" : "12093297-03", + "customerPartId" : "12093297-03", + "classification" : "component", + "nameAtManufacturer" : "Axle part front", + "nameAtCustomer" : "Axle part front" + } + } + }, { + "identification" : "19fc209f-47fe-4797-b8fa-da38a42aa63d", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "77795937-13", + "key" : "manufacturerPartId" + }, { + "value" : "NO-905057221072844983963648", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5c6d5a4b-3cca-45f0-8204-2d42bbf0f847", + "partTypeInformation" : { + "manufacturerPartId" : "77795937-13", + "customerPartId" : "77795937-13", + "classification" : "component", + "nameAtManufacturer" : "Steering wheel", + "nameAtCustomer" : "Steering wheel" + } + } + }, { + "identification" : "49d15a30-ff99-46e7-b2e0-e9c28bcf197e", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "15635759-16", + "key" : "manufacturerPartId" + }, { + "value" : "NO-695596542982882364328512", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4fe71a9f-dc0d-425e-8d93-eb0143254bed", + "partTypeInformation" : { + "manufacturerPartId" : "15635759-16", + "customerPartId" : "15635759-16", + "classification" : "component", + "nameAtManufacturer" : "Door r-l", + "nameAtCustomer" : "Door rear-left" + } + } + }, { + "identification" : "3b1a0d00-26fc-4da9-a3b1-052ab2159ef0", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:754ee594-ba0e-4c65-8169-d67ef114bd2c", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.3301", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3ffa97ff-b3a7-4946-804b-0a9a2268a285" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b7d4e0a6-c23c-4ace-8419-d07053d9a481" + }, { + "quantity" : { + "quantityNumber" : "0.2001", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ee29b0cb-2418-4829-b4a1-4cf5e7f84c0c" + } ] + } + }, { + "identification" : "8dd92fe9-31b2-43f0-8023-ebf57c9e26ae", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000006V6", + "key" : "manufacturerId" + }, { + "value" : "44948I8-01", + "key" : "manufacturerPartId" + }, { + "value" : "NO-274463926929255123292820", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:754ee594-ba0e-4c65-8169-d67ef114bd2c", + "partTypeInformation" : { + "manufacturerPartId" : "44948I8-01", + "customerPartId" : "44948I8-01", + "classification" : "component", + "nameAtManufacturer" : "ECU", + "nameAtCustomer" : "ECU" + } + } + }, { + "identification" : "35104864-6959-4861-b1f1-ac1088ce7165", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "component" : [ { + "materialName" : "Glue", + "recycledContent" : 0, + "materialClass" : "6.2", + "quantity" : { + "materialValue" : 0.3301, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GL338" + } ] + } + }, { + "identification" : "ed190c90-1956-42af-a50f-8b795f3f7090", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:b7d4e0a6-c23c-4ace-8419-d07053d9a481", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:11d3b806-9c7c-475f-8a96-c83869acf90b" + } ] + } + }, { + "identification" : "9af95a6e-1935-4cba-8054-fae625101a3b", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000008TS", + "key" : "manufacturerId" + }, { + "value" : "92938C2-11", + "key" : "manufacturerPartId" + }, { + "value" : "NO-256954620119327430333278", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b7d4e0a6-c23c-4ace-8419-d07053d9a481", + "partTypeInformation" : { + "manufacturerPartId" : "92938C2-11", + "customerPartId" : "92938C2-11", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } + }, { + "identification" : "e0d74539-c135-4347-ae64-973e643160df", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 0, + "materialClass" : "5.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 0, + "materialClass" : "5.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "4082b058-0cf9-4911-8a2c-af4306e4b72c", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000003X9", + "key" : "manufacturerId" + }, { + "value" : "47238G5-40", + "key" : "manufacturerPartId" + }, { + "value" : "NO-172667875175078717722499", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ee29b0cb-2418-4829-b4a1-4cf5e7f84c0c", + "partTypeInformation" : { + "manufacturerPartId" : "47238G5-40", + "customerPartId" : "47238G5-40", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } + }, { + "identification" : "d9c69e34-696a-4d35-8725-402fdb4027be", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 0, + "materialClass" : "5.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 0, + "materialClass" : "5.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "6123c1b8-917a-4baa-a65b-861611ed715c", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Glue", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 0, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "AL7" + }, { + "materialName" : "Other", + "recycledContent" : 0, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 30 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "0d8ca442-2ed4-43c1-a506-068788e7f9a7", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "28673126-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-007124957331041074434767", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a38b7fab-6e72-47e6-ad03-bae442072134", + "partTypeInformation" : { + "manufacturerPartId" : "28673126-98", + "customerPartId" : "28673126-98", + "classification" : "component", + "nameAtManufacturer" : "Door r-r", + "nameAtCustomer" : "Door rear-right" + } + } + }, { + "identification" : "85e85ed5-85cc-468f-add1-b6c2ad812d07", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "54165444-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-758048689753305180775539", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fe2ebe12-b846-4f00-8546-a9d430be7425", + "partTypeInformation" : { + "manufacturerPartId" : "54165444-59", + "customerPartId" : "54165444-59", + "classification" : "component", + "nameAtManufacturer" : "Bumper front", + "nameAtCustomer" : "Bumper front" + } + } + }, { + "identification" : "f03434f0-bc13-4bcd-aa2e-989ad08fb4bd", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:d095c65a-e632-4b50-af1f-1f29c122aa03", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65" + } ] + } + }, { + "identification" : "bc5095d2-acba-4ffb-a2bb-a4edacb8cdc2", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "38049661-08", + "key" : "manufacturerPartId" + }, { + "value" : "NO-756331897915455557019668", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d095c65a-e632-4b50-af1f-1f29c122aa03", + "partTypeInformation" : { + "manufacturerPartId" : "38049661-08", + "customerPartId" : "38049661-08", + "classification" : "component", + "nameAtManufacturer" : "Battery", + "nameAtCustomer" : "Battery" + } + } + }, { + "identification" : "3a82c4ce-2c47-4538-b05f-7b9eef93149a", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 0, + "materialClass" : "3.1", + "quantity" : { + "materialValue" : 5.4, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 0, + "materialClass" : "5.5.1", + "quantity" : { + "materialValue" : 11.75, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 0, + "materialClass" : "1.1.2", + "quantity" : { + "materialValue" : 1.23, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } + }, { + "identification" : "ba64f023-5ad8-4018-a5b1-113e704e477a", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ecb22ed2-976e-4474-aa30-6c6ae875b926" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:71f8924f-1ab1-4f73-8390-ffd8ddb5ab3e" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:95c25ff5-979a-4af9-955d-1741a653fd2c" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:97e8cdb9-cb0c-439d-802c-7f5e7353be7b" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a631fc6c-21ad-4b5e-adc2-b3849f27e355" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:fdec0351-5da2-41bb-a2e0-79c009adca91" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9e09aa02-0b08-433f-9136-f709dd5e5418" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:f4486e59-35b0-4a31-8c98-281249457e2b" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6639016a-45c8-4229-a279-12985faba2a0" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:29974c7d-eae7-4e80-a123-9361d4805077" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8243d214-a491-43fd-996c-514e2236d4a2" + } ] + } + }, { + "identification" : "86198287-5edc-42fc-a119-7b71eac5c0b9", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-872243158497686070857106", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a7c36221-d2fd-4f29-9991-ecc7fb104588", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } + }, { + "identification" : "f1f6c35c-9cf7-407e-b4d0-722ec7874ffe", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 0, + "materialClass" : "3.1", + "quantity" : { + "materialValue" : 1.2, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 0, + "materialClass" : "5.5.1", + "quantity" : { + "materialValue" : 2.5, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 0, + "materialClass" : "1.1.2", + "quantity" : { + "materialValue" : 0.23, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } + }, { + "identification" : "7eccbce7-af1f-43fa-b08d-682277719d3a", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:71f8924f-1ab1-4f73-8390-ffd8ddb5ab3e", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "c37a081d-7811-46ee-85de-d20fb334354b", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-130265542343423615754581", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:71f8924f-1ab1-4f73-8390-ffd8ddb5ab3e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "8e4576de-38a8-4f8c-8ae5-c8fde4dd81bb", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-08-19T14:13:51.616Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-26T01:37:27.616Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "4fae9d6d-b0aa-47a5-9f75-98e6f5cec3a9", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "67cc5c9f-2819-41f7-a495-8633d20d2b43", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:95c25ff5-979a-4af9-955d-1741a653fd2c", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "5618b86b-eb00-4d00-809d-7dea7aaab9b0", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-455380397089292580888742", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:95c25ff5-979a-4af9-955d-1741a653fd2c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "075ce630-b7e9-4faa-bd5a-fb20ea86ef92", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-08-19T08:59:04.641Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-10T11:57:41.641Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "fc7e6d0b-9074-47c0-b03a-008488bd24a7", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "c5d4461f-d3c3-41c2-a260-d5be62b314ba", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:9e09aa02-0b08-433f-9136-f709dd5e5418", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "cdb78982-ba38-4ed8-921d-da0ea77e8e1e", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-903598109190211364426775", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9e09aa02-0b08-433f-9136-f709dd5e5418", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "adbabc5e-b43d-4e2b-b20d-0996085f3e8d", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-05-03T18:28:56.747Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-26T23:56:12.747Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "099a7a60-6727-4cdd-8430-a2779efc25b2", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "f49430cb-f674-4bd0-ab37-6cddd5ade352", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:97e8cdb9-cb0c-439d-802c-7f5e7353be7b", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "7ab41720-7a60-44f3-9990-79d5a7c7ad3f", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-021962944047805746367761", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:97e8cdb9-cb0c-439d-802c-7f5e7353be7b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "2d91782b-2352-4569-8152-2d234e2b199a", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-10-06T06:10:05.668Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-01T05:47:42.668Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "a0cd3c5a-a4ea-4de6-b036-5bf30c7118b3", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "14e80a49-faf3-4715-a5dc-d7e5fb6b83f9", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:8243d214-a491-43fd-996c-514e2236d4a2", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "2470334c-bf49-49fc-88fd-8c01728d208f", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-125050795986786183359325", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8243d214-a491-43fd-996c-514e2236d4a2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "a4b474a0-9fe5-489c-b700-e3836f148b8c", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-01-26T09:23:33.849Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-25T12:18:16.849Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "f7981da7-219a-4625-b1d1-2c8dbc0adc85", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "2e76ad1e-c87f-4199-ba4d-0d13d2f68715", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:f4486e59-35b0-4a31-8c98-281249457e2b", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "15e9562e-68d9-4adc-aa24-578ff9dc506b", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-531300805801470000761489", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f4486e59-35b0-4a31-8c98-281249457e2b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "957e1b57-93f2-4da6-8de4-a4654dbdd93f", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-09-12T00:09:26.773Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-12T13:23:00.773Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "064b5271-2f2c-4ce9-b9c8-517ba2449884", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "72f5909c-e4f3-4d43-8487-e0b5f78bcfdb", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:fdec0351-5da2-41bb-a2e0-79c009adca91", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "25a4fe66-0c19-4046-8318-98b14f330384", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-244528905128108295244780", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fdec0351-5da2-41bb-a2e0-79c009adca91", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "6ae5e7d1-b405-43cf-9fde-44ccb57cab0f", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-08-19T11:14:57.719Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-04T08:53:03.719Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "9aa99032-b9d4-4ab7-932a-99c881dbd761", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "0797e251-aaca-428f-8579-560967d94905", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:6639016a-45c8-4229-a279-12985faba2a0", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "cbf29658-1df6-4dbe-b7f9-bb273f72cb5d", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-880031765073836928982686", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:6639016a-45c8-4229-a279-12985faba2a0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "d1b12a40-7e90-4be2-8386-fcd3d3253041", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-08-21T03:21:18.798Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-04T22:42:44.798Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "6ac4a860-7bb5-4691-83cc-fbb8eb88f7db", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "e70cc7a0-de58-4b20-9ea5-942d93a55255", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:ecb22ed2-976e-4474-aa30-6c6ae875b926" + } + }, { + "identification" : "df88dd65-8ed2-4f31-9f4c-2287a5e92ddf", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "materialValue" : 0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + } + }, { + "identification" : "c2715b8c-42f9-4f68-8cbb-8cf9af3b8c9d", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:29974c7d-eae7-4e80-a123-9361d4805077", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "a0b4be6e-2a3b-4181-a714-2c1c5c4769c7", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-443230900795463311145281", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:29974c7d-eae7-4e80-a123-9361d4805077", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "a6d50f7f-8575-48cc-b484-bb8fe5c8424c", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-07-08T16:50:27.823Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-15T20:55:33.823Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "1a5c5d03-a81c-464e-9da8-774fdf2f7152", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "44cf54cb-f8b7-46a6-97b8-e1bdc46139e7", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:a631fc6c-21ad-4b5e-adc2-b3849f27e355", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "503d0415-19c8-400b-b491-15300000227d", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-019516772432761683505797", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a631fc6c-21ad-4b5e-adc2-b3849f27e355", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "2c54547e-9e37-4b39-bbed-4339df15aed3", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-06-14T18:33:57.694Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-25T06:54:11.694Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "2fd3a731-9028-434c-90d2-bf7db903aa06", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "c6f612b9-06fb-4c23-b0f0-8c63e1d14354", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:061445d9-7ccf-4fed-ae0e-4998ff22c068" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:18284132-42aa-4e63-8189-f5c68a0542ef" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:efb8d8a1-7d8b-4f0a-89cf-4077ab67651d" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:884cf2ec-c8ad-4678-a0f4-f0839d3681cc" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:678759de-6dbb-447e-9ff8-71aeca28a2dd" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:fd49537d-8c05-4d31-a649-f81f754a33e5" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1351d63d-e45b-401a-9f18-6d385f0eeb38" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3662f179-c32a-44c3-b3af-d036994008ec" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:f0df98cc-56ea-4475-b479-3cf81014b843" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:f0fcfe14-11a8-43a7-ad38-82e25484ac10" + } ] + } + }, { + "identification" : "0940488e-6e23-490a-aa25-d003b6603f3a", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-936469540267122028133084", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c33ad565-6cf6-4ac6-9c68-0a1216f2deae", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } + }, { + "identification" : "4b6023d0-c095-4ccb-8682-67bdc9834a7d", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 0, + "materialClass" : "3.1", + "quantity" : { + "materialValue" : 1.2, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 0, + "materialClass" : "5.5.1", + "quantity" : { + "materialValue" : 2.5, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 0, + "materialClass" : "1.1.2", + "quantity" : { + "materialValue" : 0.23, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } + }, { + "identification" : "732235bb-b139-446a-af56-61de541fec92", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:884cf2ec-c8ad-4678-a0f4-f0839d3681cc", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "d2f99354-fa3f-47ec-983d-e35720287867", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-779279901827212210096658", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:884cf2ec-c8ad-4678-a0f4-f0839d3681cc", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "bd2f1182-0450-455b-a493-d2b6ed057678", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-04-13T07:34:12.982Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-20T06:06:44.982Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "83390408-c2bb-4666-bb8e-6ca8ff836178", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "d19d8736-4383-48f2-a0a6-6f4d80d90014", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + } + }, { + "identification" : "55179ff0-7790-4464-bdde-0d98d848fef7", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "materialValue" : 0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + } + }, { + "identification" : "c82cc313-fce0-43a5-bc32-d01a5a49ba8a", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:18284132-42aa-4e63-8189-f5c68a0542ef", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "e67fcb88-9c45-4bf0-b0ef-23229e3f69f1", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-288561296923641725525560", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:18284132-42aa-4e63-8189-f5c68a0542ef", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "9efc7970-cb28-4d3f-bff2-a88c601bd31a", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-11-17T08:10:59.931Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-30T17:58:28.931Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "3c3a0e0d-a3bf-459e-99e7-558ac5cef25b", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "6cdbc913-fb6b-41b5-8a77-e2573196e49e", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:f0df98cc-56ea-4475-b479-3cf81014b843", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "fdf0f094-6f01-44f5-99e0-6a0c481cc7f7", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-947357485572138547474815", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f0df98cc-56ea-4475-b479-3cf81014b843", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "02baa5d3-cd73-45c5-87f0-c112d8277f76", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-11-08T20:23:14.118Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-06T19:08:40.118Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "d7b57d7c-cf69-4560-a0e9-34bb4abe226a", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "de218c68-a444-417c-8199-f3aa2581d81c", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:1351d63d-e45b-401a-9f18-6d385f0eeb38", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "b3aa8d69-160a-4311-8382-b76d012ca5d1", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-645226141826539042644127", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:1351d63d-e45b-401a-9f18-6d385f0eeb38", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "4e576d79-4ccc-49d9-b118-8c7d1437f655", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-12-12T16:32:53.060Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-24T02:19:22.060Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "22507ad1-6083-410c-8fdb-245ad51cd6ff", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "05da5912-b6ba-4921-8654-b0699f3db180", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:f0fcfe14-11a8-43a7-ad38-82e25484ac10", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "e8be856e-c7fa-4a52-80d7-c8f81f5282ea", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-278073431490304036390838", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f0fcfe14-11a8-43a7-ad38-82e25484ac10", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "1f156cbe-9cff-48a4-9f2b-19018a734311", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-05-08T19:12:37.142Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-22T22:14:12.142Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "78207003-28f7-45a9-ab57-ad8671387241", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "203c588a-0701-49c7-a72e-4cdd71c87e35", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:3662f179-c32a-44c3-b3af-d036994008ec", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "55985b0a-dbde-45ca-888e-e67c111800f4", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-027743164217746938122367", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3662f179-c32a-44c3-b3af-d036994008ec", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "523e7a90-fe51-4383-ba7d-7c1016f9f1d5", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-02-02T11:50:43.089Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-19T03:45:40.089Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "c6d89de6-3ae5-4b7c-a85d-6587278bbf83", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "ecabbab9-742a-4279-9510-e6bff1c16f2c", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:fd49537d-8c05-4d31-a649-f81f754a33e5", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "3a4d968e-8e52-4304-8a35-7b97fade9ebb", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-052654298270007473939311", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fd49537d-8c05-4d31-a649-f81f754a33e5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "44d291a8-0f17-42cb-9776-79e6ffea4530", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-05-27T13:19:24.033Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-18T06:48:39.034Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "99c6594f-3195-4330-9187-eddd87f48a3d", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "92adaa2d-36f8-47b0-b36d-605234fa75f5", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:678759de-6dbb-447e-9ff8-71aeca28a2dd", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "d43ae817-517e-4f94-8270-8a920fcf2310", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-051790433845902624624319", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:678759de-6dbb-447e-9ff8-71aeca28a2dd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "04b0f270-ecc8-4019-9aa4-fb7922b8ad4a", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-02-16T23:29:34.007Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-11T00:16:02.007Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "6622c82d-f615-4a4e-940d-8f9e966ea07d", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "700fb67c-d200-47c3-be51-3ea4c16d505a", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:061445d9-7ccf-4fed-ae0e-4998ff22c068", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "4afa2905-da5d-43d3-a6ae-1424f406e401", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-399581361452668197953794", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:061445d9-7ccf-4fed-ae0e-4998ff22c068", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "cf9dda3b-0acc-47fe-a12c-63912ede4023", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-12-21T03:13:09.906Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-27T14:10:39.906Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "769332f0-cef6-4c27-9d8f-b5157d205bf0", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "319b22f8-ce27-4d3d-851d-ddeadddd611d", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:efb8d8a1-7d8b-4f0a-89cf-4077ab67651d", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "c46a4c89-e65c-4f04-a3c4-4ad85004b89a", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-998794657627460138476569", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:efb8d8a1-7d8b-4f0a-89cf-4077ab67651d", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "a358ca17-d357-4be4-950a-d45b4b8d9853", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-05-24T08:01:04.955Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-14T21:10:49.956Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "84c45640-7a6d-4cd4-bc1b-c0e2bc07945f", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "60155b38-0865-4afa-8be4-d837c333e0ac", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e03abe74-c4bc-4a0d-a274-a234e0931b69" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:64cd8d10-3c75-44b7-a5a0-b6f032f33ee3" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ec3ff3c1-45d4-4d2f-9ed0-ccbe0fdd848f" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:2582d228-057a-4254-a50f-e78e523eb7fd" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:abdda3ec-4f4b-4502-aae0-5abad86739da" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:04d2f8d6-3a15-4fba-9b3d-06b149a1f660" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:65d609c0-983e-4503-9d0e-36a2f5dbe6ca" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e53eb022-5127-4e0c-a3ca-e3e18f3631d9" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e3dd017f-ba88-4295-87af-4c5072c5cfd0" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:69ba8e60-78ff-4008-bbcd-dea172bd768c" + } ] + } + }, { + "identification" : "0b851868-4642-4cc0-a311-001504cdfb13", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-987496315295296675091552", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d5d0a661-e7c1-4161-b370-af3af9c8ed65", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } + }, { + "identification" : "05ab0ef7-68b7-493e-8447-ce24c03b87af", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 0, + "materialClass" : "3.1", + "quantity" : { + "materialValue" : 1.2, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 0, + "materialClass" : "5.5.1", + "quantity" : { + "materialValue" : 2.5, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 0, + "materialClass" : "1.1.2", + "quantity" : { + "materialValue" : 0.23, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } + }, { + "identification" : "a68eddc6-dd5e-4fb8-8b3c-60aba7a14a52", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:2582d228-057a-4254-a50f-e78e523eb7fd", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "41571fe1-20f7-4114-a7be-eeae182cf540", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-755600977772068144422925", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2582d228-057a-4254-a50f-e78e523eb7fd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "c2d25728-84f4-4c8c-aacf-36ea26e2b7d9", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-12-29T08:50:22.570Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-07T16:50:25.570Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "bedbd2ed-f084-4024-b1ac-f0500f4d4776", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "961fb9c9-b7d4-44ed-9cee-544b630355eb", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + } + }, { + "identification" : "c9ae1d1d-c5f3-4116-aae3-e7cf8ff7968b", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "materialValue" : 0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + } + }, { + "identification" : "afd9c4c5-e1ea-473a-845d-fa2bdd685b78", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:64cd8d10-3c75-44b7-a5a0-b6f032f33ee3", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "c55fc6ed-36be-4670-a7c1-95d43f56f7e8", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-976246583518983329476627", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:64cd8d10-3c75-44b7-a5a0-b6f032f33ee3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "4586223a-e21f-4c81-b86b-c453648a8623", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-06-03T18:21:09.520Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-11T17:36:19.521Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "25410410-04c9-4a12-89ad-990ad63dcb78", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "157d5337-723d-4867-bc57-b01c24cf0bdf", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:e03abe74-c4bc-4a0d-a274-a234e0931b69", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "13e35862-04ea-47c3-9d59-2b6da2e3b394", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-215517135022923154231124", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e03abe74-c4bc-4a0d-a274-a234e0931b69", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "bde7aed8-1ba3-45bd-88e3-1fde595c7d86", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-12-22T15:55:50.495Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-23T00:31:30.495Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "f0bf3f0b-1658-47cd-b34e-80c12f9281f3", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "67d0089c-ec2d-4441-9b1d-953b2adce8af", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:e3dd017f-ba88-4295-87af-4c5072c5cfd0", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "314ef791-3f37-4643-b130-5b85bb967010", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-065697353061472490561920", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e3dd017f-ba88-4295-87af-4c5072c5cfd0", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "a8372c01-b759-4b02-a594-a91cb33aad3a", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-04-28T05:01:53.698Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-29T22:14:08.698Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "4d12db0a-3fe1-4ed5-b3f9-7259e25b3dc6", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "d9230b67-351f-4d9c-929e-4808bf123bea", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:65d609c0-983e-4503-9d0e-36a2f5dbe6ca", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "98d5af3f-24df-4809-9364-a42189260489", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-456190353233510012423226", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:65d609c0-983e-4503-9d0e-36a2f5dbe6ca", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "1c110055-9eb5-4547-9d66-2ff79e92c5ed", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-09-13T08:35:53.645Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-29T11:23:21.645Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "7d98c9f9-cb01-432f-8a1d-23f8836fd0fe", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "61a7858c-11a0-408f-83f9-c1c4acd2dfb6", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:ec3ff3c1-45d4-4d2f-9ed0-ccbe0fdd848f", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "bc98a2d9-71df-4ce8-942f-03f339dc97d8", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-412426811167052022316607", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ec3ff3c1-45d4-4d2f-9ed0-ccbe0fdd848f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "b6d94669-8779-4197-9893-a74de587dfb1", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-05-23T20:24:20.545Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-04T03:04:12.545Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "3d3e861b-d6b9-4c2f-847a-451465fc93c5", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "7850c4c7-f3dc-436c-9c8d-1f382483680d", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:e53eb022-5127-4e0c-a3ca-e3e18f3631d9", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "68f49896-0c94-4f70-8494-1d0e46f314f9", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-274426967409614139072830", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e53eb022-5127-4e0c-a3ca-e3e18f3631d9", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "850ee42e-76b3-4dac-8f53-dddccfa04a3b", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-11-20T23:54:11.671Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-18T04:05:28.671Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "e4205332-99c5-4d11-aec9-61c1d9aa8554", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "1147a231-5a54-406e-b5e0-d9671dc6ba4b", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:04d2f8d6-3a15-4fba-9b3d-06b149a1f660", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "632be621-3507-4771-9d57-6f18178bef6f", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-322063546063876574365836", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:04d2f8d6-3a15-4fba-9b3d-06b149a1f660", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "df7448f8-cd3d-42b4-86a1-be490ab0c363", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-05-25T07:55:41.620Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-31T19:18:17.620Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "6df6cb57-e4c3-48a8-98db-536c92119357", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "98bb5f94-4528-4fe1-b24f-f7c58c4dd9fe", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:abdda3ec-4f4b-4502-aae0-5abad86739da", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "3d45d107-ce83-483f-8b48-106aca7a7a47", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-840838259300630884167444", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:abdda3ec-4f4b-4502-aae0-5abad86739da", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "547e55a1-5b88-400a-8b38-5a026032bb43", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-01-20T03:50:55.595Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-04T03:02:46.595Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "88d28f1e-df0f-4017-ae84-a888ad03217a", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "8e462230-6392-45f0-84f8-fe5a2424cab2", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:69ba8e60-78ff-4008-bbcd-dea172bd768c", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "04a3acc7-46a0-4b50-b184-e2bf0ab45cc9", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-007811247724310901088732", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:69ba8e60-78ff-4008-bbcd-dea172bd768c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "1367bc6d-5d91-4388-b917-1b4c0c90fce8", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-09-24T14:57:28.722Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-04T18:38:54.722Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "3898c518-2efb-478d-85ed-ea5627816ea1", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "39dc9178-364d-4570-9e18-6ec4c6ae6fe5", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d53afa44-ea29-49bc-8ab3-fb2b51aceb01" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3c3a4802-4456-4db4-9900-2d71573001a2" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e3bac071-b7dd-4760-bc34-9b27fa82758c" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9c9c5a3a-9164-4559-a5f0-500e802fd9d3" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:268554e4-0a92-4159-a7c9-f25f48ec5df4" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:7dc0fad6-e458-4c94-a75e-fa5d55da3899" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:54a3dc30-2fc5-453b-bd4e-56505f349df7" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a6986b46-3bc1-4a1a-8548-042ed033e392" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a27645c5-b79d-4982-b456-9c5b46aacd27" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:2b44d488-1f07-465b-991e-345592122e02" + } ] + } + }, { + "identification" : "091c8667-4c16-4d56-ab6e-ced581d28209", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-397154349131484375656139", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:fe091678-493d-4c75-af0c-e5d56d93dce1", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } + }, { + "identification" : "565f46bd-e834-4416-9922-e9011b8efeeb", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 0, + "materialClass" : "3.1", + "quantity" : { + "materialValue" : 1.2, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 0, + "materialClass" : "5.5.1", + "quantity" : { + "materialValue" : 2.5, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 0, + "materialClass" : "1.1.2", + "quantity" : { + "materialValue" : 0.23, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } + }, { + "identification" : "fa03ee22-2b7e-4181-8fb1-53ab73c1b709", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:268554e4-0a92-4159-a7c9-f25f48ec5df4", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "a22ea960-5654-4ae8-8508-69c45be88d39", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-034992236059910962808755", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:268554e4-0a92-4159-a7c9-f25f48ec5df4", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "918cb513-91b8-477b-bd35-d06c7458c211", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-11-18T11:43:39.433Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-07T17:12:39.433Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "12812ac2-6128-4f8e-bc44-26fcb4e3dda1", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "5330a6fa-9121-454b-ab36-14a8cd7f83fa", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + } + }, { + "identification" : "675e7913-ebf1-429e-832f-fb4f35a1d325", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "materialValue" : 0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + } + }, { + "identification" : "583d73c5-a26e-4d47-9644-5f640bb8a0c7", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:d53afa44-ea29-49bc-8ab3-fb2b51aceb01", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "cacecffb-8336-463b-93a3-fd69d8f06d94", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-741160439714312150263205", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d53afa44-ea29-49bc-8ab3-fb2b51aceb01", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "77e4c332-33b3-4410-9376-16222ed36254", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-10-27T23:18:21.325Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-22T11:41:51.325Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "bcb70bbe-35fe-4e7c-8ef7-48c96b176cfc", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "9c6f1b80-484d-4b66-af6c-99c375680738", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:7dc0fad6-e458-4c94-a75e-fa5d55da3899", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "de7d9708-82ea-45fa-9d52-c4a909ebec0c", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-891133096626491789094716", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7dc0fad6-e458-4c94-a75e-fa5d55da3899", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "72d1186b-9c06-4751-b6c4-4786bbc5d535", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-04-18T11:50:52.458Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-18T15:42:15.458Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "d6772f8d-3132-4f21-8e69-1353eb20516f", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "656a5971-a7b9-438a-af42-d9d19457f5b2", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:3c3a4802-4456-4db4-9900-2d71573001a2", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "799d8366-7540-4a53-843c-def411e185ad", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-063820828568097941920228", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3c3a4802-4456-4db4-9900-2d71573001a2", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "7d0d35b0-ddeb-4ddd-89c1-31ec8cf942c9", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-01-14T22:16:59.351Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-16T17:32:20.352Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "5f43f65b-7446-4271-9ad8-2fd72ef67866", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "08fb6460-cf1f-4949-b4ca-5bdad9afc636", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:54a3dc30-2fc5-453b-bd4e-56505f349df7", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "6fedfa24-8a27-4074-8c8a-e177cc25f57e", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-894692428212679504198409", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:54a3dc30-2fc5-453b-bd4e-56505f349df7", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "d60de02c-eef8-44d3-8e73-e40ae87ac33c", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-11-28T14:30:20.484Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-11T05:18:06.484Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "7225302a-0c4e-4c92-a477-0ff79e70dbfa", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "2eb53c69-50bf-418c-ad6c-95dc2cc75140", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:e3bac071-b7dd-4760-bc34-9b27fa82758c", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "23926b67-e0c1-4e9c-be04-d2685ccb1bc2", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-098464765106257705924304", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:e3bac071-b7dd-4760-bc34-9b27fa82758c", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "0584e8d9-60f2-4ba6-9298-15e8d64e2334", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-02-15T02:39:49.377Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-10T11:13:42.377Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "cf24606c-d631-42b6-a373-93051659e117", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "7bc10a7a-1e0d-4285-aff2-2b529de85fa6", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:a6986b46-3bc1-4a1a-8548-042ed033e392", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "302dd638-2087-4e14-9bef-e435f114ce4a", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-740243203044432370004786", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a6986b46-3bc1-4a1a-8548-042ed033e392", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "a39a5844-e89f-44b4-b9f4-400515cd9fa6", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-10-26T11:41:51.510Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-25T07:46:47.510Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "e152eb60-74f1-4e4c-b782-52fe01c4aa2b", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "9e56b75f-9258-46a6-a440-b2b0c87c2fd2", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:a27645c5-b79d-4982-b456-9c5b46aacd27", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "4af71f0b-82cf-4dd1-baec-2db758b98146", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-693164889856495573522160", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a27645c5-b79d-4982-b456-9c5b46aacd27", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "a6224a1d-4972-4ac1-84e6-63762bd8de94", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-04-11T14:38:50.537Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-17T16:43:44.538Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "aebdf2fe-762a-4873-ad74-5a8e00f6c630", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "27a4c5cf-9843-46e0-af19-903a3a784fd1", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:2b44d488-1f07-465b-991e-345592122e02", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "83babf24-b926-4815-81e5-48d80e40fecb", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-680857851056982426316844", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2b44d488-1f07-465b-991e-345592122e02", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "4ab85abb-6b58-428d-9f47-ebbb0af78918", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-03-08T16:52:26.563Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-04T15:15:56.563Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "05ea3fe8-0611-43a0-902a-0f55961ae26d", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "be8fdb81-8133-4e43-a2d8-e0b39623f0a8", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:9c9c5a3a-9164-4559-a5f0-500e802fd9d3", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "12f71f52-dc6f-4530-9d40-d7cd1769eecf", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-669743859207774206291178", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9c9c5a3a-9164-4559-a5f0-500e802fd9d3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "c24a87f2-80d4-495a-b235-1c517df45780", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-05-31T07:27:15.404Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-08T22:53:02.404Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "d8299618-861d-420e-a417-661992651a21", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "e50fabeb-c419-4924-860c-258c2f637cc2", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:816f7af7-9ccc-4678-844a-8b648118d44e" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:bf4f2792-7fa8-479e-b55b-98ed45c0220f" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:cbec4ede-2ee2-4549-8cd4-f26846d69b68" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:7b1544d0-7b10-4184-9ffa-55e492a0fd38" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8d1a3b46-8254-47e8-bd85-9c29ff892210" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:98c1d2e9-dcf8-4cca-baf1-ac0fc92d32ab" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:bd57f26a-ff24-48cd-b86b-2538d18ed364" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8a78453d-e44c-4e85-a829-d15985a1144b" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:f98d9e49-b6b0-401a-83cc-51c584248fcd" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c6932d1d-7964-4bf3-ac68-0e17854c68e5" + } ] + } + }, { + "identification" : "50502218-837a-4335-8bfb-5f7aaa6fa25b", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-411900890782891517523033", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c74a3e2a-530e-4ef0-87b5-d554fca382aa", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } + }, { + "identification" : "3196bc4c-0cbb-4361-aaec-569f56d69e58", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 0, + "materialClass" : "3.1", + "quantity" : { + "materialValue" : 1.2, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 0, + "materialClass" : "5.5.1", + "quantity" : { + "materialValue" : 2.5, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 0, + "materialClass" : "1.1.2", + "quantity" : { + "materialValue" : 0.23, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } + }, { + "identification" : "e4246141-16d8-4d64-99a5-88ff0aac54c8", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:bf4f2792-7fa8-479e-b55b-98ed45c0220f", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "167b6a59-67fd-4ecf-8737-3d735869cdf7", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-814834464581355412582927", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bf4f2792-7fa8-479e-b55b-98ed45c0220f", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "e7d1665c-f2c9-429e-9eca-f21f0ff7b0db", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-12-24T13:32:13.060Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-19T18:14:47.060Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "6366196e-7a35-4434-be60-9bf632d0c377", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "e1616590-2796-4c28-8665-6b68b6d26ca0", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + } + }, { + "identification" : "e0489bbb-dfaa-4271-b599-9cf993a005a6", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "materialValue" : 0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + } + }, { + "identification" : "2e0e103b-f4a0-499e-88ba-7cae6436732a", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:bd57f26a-ff24-48cd-b86b-2538d18ed364", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "a167eb0d-3a9e-4423-8782-2bc4c3e2596c", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-440692985740032047782501", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:bd57f26a-ff24-48cd-b86b-2538d18ed364", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "dded6238-5da7-4e11-9258-1de2691764cf", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-03-16T15:08:59.191Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-29T18:22:48.191Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "5f7b76e0-9e4f-4692-a398-456ac3d9a340", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "1b336125-a3ca-4d0b-86f9-491e5e7c6889", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:f98d9e49-b6b0-401a-83cc-51c584248fcd", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "1133d595-1d3f-4c5b-ba52-006449be91dd", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-073339747964710286010910", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f98d9e49-b6b0-401a-83cc-51c584248fcd", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "e0b05af1-a2fa-4c82-ab35-053989f0b3ac", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-12-29T12:52:17.242Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-22T04:08:36.242Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "55dcd55c-214c-44f2-8e4f-18c0b5dd394a", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "d918804e-fa26-40cd-b5ee-024b7910ff44", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:98c1d2e9-dcf8-4cca-baf1-ac0fc92d32ab", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "7dedb37e-072c-43c0-ade5-77515ce3b204", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-791063849687758768537593", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:98c1d2e9-dcf8-4cca-baf1-ac0fc92d32ab", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "5232ba47-b7e0-4153-971c-580c864e9e5f", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2017-06-19T06:41:25.166Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-03T21:09:36.167Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "0f936c1a-b40e-44dc-a303-708c9ef0559f", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "1280f5fb-eb5d-41ed-9810-6a8249c0bf36", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:8d1a3b46-8254-47e8-bd85-9c29ff892210", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "44a88a9d-290a-4351-8b3d-b754f5e4725a", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-829560258621094129036030", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8d1a3b46-8254-47e8-bd85-9c29ff892210", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "8e51a6b0-26e4-498a-a3ef-7aa5ecad1473", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-03-19T04:35:58.140Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-04T18:05:14.140Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "5dbb8669-b80a-4518-b81e-98a98cd5b990", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "ef3d7bd5-b746-440e-b2e4-59bc954b322d", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:8a78453d-e44c-4e85-a829-d15985a1144b", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "07bb809d-e6a6-41d5-939c-ba5d13d0d359", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-183039123743381013318764", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8a78453d-e44c-4e85-a829-d15985a1144b", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "bfb50eab-8148-40b4-8303-2f4b804db823", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2013-07-27T09:49:28.217Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-12T13:37:14.217Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "696c7011-601f-4b70-914a-1b7f1bb01a5c", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "f9f751d8-1dd7-4146-b1c1-b376194450c4", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:7b1544d0-7b10-4184-9ffa-55e492a0fd38", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "e70db97e-9329-4c54-ba09-7364b7603f2e", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-717243127610800273354391", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:7b1544d0-7b10-4184-9ffa-55e492a0fd38", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "3e7284ef-ab6d-47c4-89b2-88d0567d47a1", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-04-16T12:20:30.116Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-19T22:52:16.116Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "b6c360ef-eb57-4e08-bd68-91a9176cffde", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "6f5d16d9-93d3-42f4-a4bd-05f16847fa03", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:c6932d1d-7964-4bf3-ac68-0e17854c68e5", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "21728c55-c0a0-4e6f-8784-2266f82a4560", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-900295643543929427504984", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c6932d1d-7964-4bf3-ac68-0e17854c68e5", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "fa9238b2-1b2c-41f8-9b37-635e0f43e314", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-12-15T14:57:37.268Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-30T12:44:19.268Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "d6920a24-1787-4050-93ff-7df03453c3b3", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "299ef944-924e-4fa7-b471-b348fe22137d", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:816f7af7-9ccc-4678-844a-8b648118d44e", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "a78ab366-f367-499a-bdda-0da616dbc8c2", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-238449964390011046450191", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:816f7af7-9ccc-4678-844a-8b648118d44e", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "c04a96e8-cb7d-416a-8ff7-cc17bdbba8d2", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-03-11T20:23:05.034Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-18T20:05:44.034Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "70004e65-4874-49d1-b8f8-64f5f9225a43", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "9d697087-32a3-48ab-bd67-c9c2479dd263", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:cbec4ede-2ee2-4549-8cd4-f26846d69b68", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "774ec40a-665b-4fbe-aaa9-d750a5bcc553", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-150681052048967250407746", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:cbec4ede-2ee2-4549-8cd4-f26846d69b68", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "a79e95c4-47bb-4234-9eff-64e104475dc4", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-02-23T18:46:58.089Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-29T17:01:54.089Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "67e9eb15-26fc-43c7-bdfa-55aaf9a9b365", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "830cc114-6c37-40ab-a9de-efe1926c456e", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:380ff435-4193-477e-b95c-6acc0546cc45" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ff79a175-e9ea-49b9-91ae-919c37709129" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:94894691-ed16-4a78-817a-728c8cc2ad8a" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:f13bd078-6f08-489d-aa4b-ff70f0e704a8" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:15591ad7-24ca-457a-9f7c-45a788afa8c3" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:454c15e8-262b-4adb-8821-c0454afb3bac" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c0d1ebba-0bed-498e-9b78-a83d2feeb899" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:24069836-0afd-45eb-a20f-51adb0b0e515" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b78ca8e4-fbcc-479e-95c5-b9a0ec738c08" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:97fb2be2-303b-4047-999f-99e40d2ad575" + } ] + } + }, { + "identification" : "c536213e-830e-4eb2-adf1-16a2f5f41244", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "8840837-48", + "key" : "manufacturerPartId" + }, { + "value" : "NO-556635662271379893406331", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3c090c67-eba6-433c-ad5a-ab1984e15ff1", + "partTypeInformation" : { + "manufacturerPartId" : "8840838-04", + "customerPartId" : "8840838-04", + "classification" : "component", + "nameAtManufacturer" : "HV MODUL", + "nameAtCustomer" : "HV MODUL" + } + } + }, { + "identification" : "729f2335-dd4c-437b-890b-10a84ec17426", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "component" : [ { + "materialName" : "Cooper", + "recycledContent" : 0, + "materialClass" : "3.1", + "quantity" : { + "materialValue" : 1.2, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + }, { + "materialName" : "Polyamid6", + "recycledContent" : 0, + "materialClass" : "5.5.1", + "quantity" : { + "materialValue" : 2.5, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "POL6" + }, { + "materialName" : "Carbon Steel", + "recycledContent" : 0, + "materialClass" : "1.1.2", + "quantity" : { + "materialValue" : 0.23, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + } ] + } + }, { + "identification" : "1c3b002d-dd12-433f-ba3a-ffb414eec13e", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + } + }, { + "identification" : "9c1b60a0-06a0-4b37-acb0-ea139bf7bc33", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "component" : [ { + "materialName" : "Sealant", + "materialClass" : "6.3", + "quantity" : { + "materialValue" : 0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "weight" : "0.11", + "materialAbbreviation" : "SEL3321" + } ] + } + }, { + "identification" : "bb475f34-8081-4d96-8021-13575655756a", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:94894691-ed16-4a78-817a-728c8cc2ad8a", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "2f1cc5ad-d4f5-4c6f-9b6f-e02bfa32688d", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-834156910309543808064188", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:94894691-ed16-4a78-817a-728c8cc2ad8a", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "ef3c43a0-1ecb-4c71-9809-f1e367433621", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2015-07-22T21:44:37.244Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-08T23:24:06.244Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "0f0fa12d-29cb-4214-9236-bf00aa2e5f04", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "636a54be-52c4-4936-8608-c8d9fb5c498b", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:24069836-0afd-45eb-a20f-51adb0b0e515", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "bb0051b1-0149-4dff-805f-a97a60962aa8", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-878066690893572036763453", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:24069836-0afd-45eb-a20f-51adb0b0e515", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "74fe0ebc-c3bd-4a36-9f5a-ecd5cce6f31b", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-11-04T14:44:00.385Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-01T17:09:33.385Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "0baa27af-435e-4dbc-a748-6bcceda5ec4a", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "866a3cf4-d08b-4474-be42-ad02caaf3bbe", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:b78ca8e4-fbcc-479e-95c5-b9a0ec738c08", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "fd92a5f5-0a8b-4a95-82c1-a4e46fbd0253", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-590048647872889800392362", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:b78ca8e4-fbcc-479e-95c5-b9a0ec738c08", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "7a243252-d7f1-438d-a739-f5ba851bffc2", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-08-11T22:43:48.417Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-29T06:40:58.417Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "63a13110-e550-4049-b394-a2607a643e6c", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "6d1629ca-b1c9-4bdd-afd2-eeae6014e5be", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:97fb2be2-303b-4047-999f-99e40d2ad575", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "f9d0faa9-89c8-4f75-b729-53eb87fcd131", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-886010748623932134175360", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:97fb2be2-303b-4047-999f-99e40d2ad575", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "2e6a7b62-9604-46cf-b103-9057599f1183", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2021-04-27T23:34:19.443Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-09T04:52:22.443Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "bea23fad-bf33-416f-b80e-8b8b94a5e3bb", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "b68355b6-9753-4d9d-983d-4f93d5222e39", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:380ff435-4193-477e-b95c-6acc0546cc45", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "a9af35f3-b591-419f-aa35-ed2206615aa4", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-642865039525099177152531", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:380ff435-4193-477e-b95c-6acc0546cc45", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "977129ce-6fd2-4da3-bb28-f78b7622bcae", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2019-06-30T12:36:28.194Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-21T15:54:34.195Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "d247ab71-48ae-47f6-8aec-0c12aaf0b6c8", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "97de2657-c717-44f0-b5aa-738549349930", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:ff79a175-e9ea-49b9-91ae-919c37709129", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } ] + } + }, { + "identification" : "2e762cae-2ec6-4d25-aa58-cf2e8524ec04", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-978709787514717395081780", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ff79a175-e9ea-49b9-91ae-919c37709129", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "02c8c279-5c75-4f24-ad65-680403eacfdb", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2020-10-15T05:43:18.220Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-30T00:37:23.220Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "f484991a-ceaa-499a-b751-a2a84d99c71e", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "d0118dad-7f30-49f2-8076-d75b344b7a3b", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:c0d1ebba-0bed-498e-9b78-a83d2feeb899", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "8400eefd-4c14-4cbf-8e0f-7ebe6233cc79", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-462779239183392491104447", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c0d1ebba-0bed-498e-9b78-a83d2feeb899", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "f4ecf91e-fb00-44e3-87c2-4c5a27848494", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2016-12-19T20:57:05.355Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-09T14:37:20.355Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "2a9ecaf7-2dca-4afa-a787-f0e66b8a5a3e", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "c8e5203f-acf8-431c-bd06-27384177459d", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:15591ad7-24ca-457a-9f7c-45a788afa8c3", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "a0ace5ba-4a73-430d-a2ef-7a25ddf33215", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-038393596539554221901377", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:15591ad7-24ca-457a-9f7c-45a788afa8c3", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "c5583ef1-ff40-412d-be73-986f715a95c9", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2014-09-26T18:30:46.294Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-15T11:08:05.294Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "b3130437-edc7-485a-87ca-b016f694b1cc", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "f83bdf9b-e664-465d-afbf-5bad4caac81c", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:454c15e8-262b-4adb-8821-c0454afb3bac", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "d760f316-19ea-41ff-9a38-ba580898ae2b", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-513959705031332580123730", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:454c15e8-262b-4adb-8821-c0454afb3bac", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "23a761f7-a448-4350-9c27-54b41e8a1664", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2018-02-03T17:24:24.323Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-10-23T05:46:48.324Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "37487c35-5794-418c-a825-b1bbfec6a93d", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "46663ecd-0311-4aef-9321-6af4b3f210cf", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:f13bd078-6f08-489d-aa4b-ff70f0e704a8", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } ] + } + }, { + "identification" : "68ff4c7e-f6e7-43dd-bf2c-981e5995eb44", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000004WK", + "key" : "manufacturerId" + }, { + "value" : "8840838-04", + "key" : "manufacturerPartId" + }, { + "value" : "NO-008235418150348082492051", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f13bd078-6f08-489d-aa4b-ff70f0e704a8", + "partTypeInformation" : { + "manufacturerPartId" : "8840374-09", + "customerPartId" : "8840374-09", + "classification" : "component", + "nameAtManufacturer" : "ZB ZELLE", + "nameAtCustomer" : "ZB ZELLE" + } + } + }, { + "identification" : "ba1b2298-68db-4317-a9d5-af163a321fdc", + "aspectType" : "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload" : { + "minimalStateOfHealth" : { + "minimalStateOfHealthValue" : "90.0", + "specificatorId" : "OEM", + "minimalStateOfHealthPhase" : "as specified by OEM" + }, + "currentStateOfHealth" : [ { + "currentStateOfHealthTimestamp" : "2022-10-19T20:36:45.270Z", + "currentStateOfHealthPhase" : "as specified by OEM", + "currentStateOfHealthValue" : "105" + }, { + "currentStateOfHealthTimestamp" : "2022-11-07T11:18:52.270Z", + "currentStateOfHealthPhase" : "as recieved by dismantling", + "currentStateOfHealthValue" : "95" + } ], + "performanceIndicator" : { + "electricCapacityMin" : "0.8", + "electricCapacityMax" : "0.88" + }, + "type" : "HVB" + } + }, { + "identification" : "8f287b49-995a-48a8-a280-a3bf9d947cc5", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Cathode Material", + "materialClass" : "8.1", + "component" : [ { + "materialName" : "Cobalt lithium manganese nickel oxide", + "recycledContent" : 0, + "materialClass" : "8.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 100 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "NCM" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "a922c8ba-e981-4234-b432-b262c4ef588b", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL000000000BRP", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-355995527193049082535419", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5c3d9f2f-d933-4fac-8c23-88adc7943c67", + "partTypeInformation" : { + "manufacturerPartId" : "43847201-25", + "customerPartId" : "43847201-25", + "classification" : "component", + "nameAtManufacturer" : "DXM Part I", + "nameAtCustomer" : "DXM Part I" + } + } + }, { + "identification" : "c1c03ce7-6c00-471d-afa1-c4c6cf981861", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "57929013-09", + "key" : "manufacturerPartId" + }, { + "value" : "NO-606237138892732984854644", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:4fd5306d-0302-48db-9f42-b43a15e94f33", + "partTypeInformation" : { + "manufacturerPartId" : "57929013-09", + "customerPartId" : "57929013-09", + "classification" : "component", + "nameAtManufacturer" : "AC compressor", + "nameAtCustomer" : "Air conditioning compressor" + } + } + }, { + "identification" : "269a2d4d-9ddb-4d25-bcc3-e2f7a02122da", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:893e9b93-7ea2-4965-a163-4271011c78ba", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.2014", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4d2b3c50-d184-49b7-abee-c15e2416d360" + }, { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:db09e9f4-58db-4cd0-a0b6-4b24fb345c8f" + }, { + "quantity" : { + "quantityNumber" : "0.2341", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a61c90b6-458e-4c50-8ca4-1a92b10560bb" + } ] + } + }, { + "identification" : "8da97a54-e6df-4e9b-8c76-66ac8b1def56", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000005VV", + "key" : "manufacturerId" + }, { + "value" : "1O222E8-43", + "key" : "manufacturerPartId" + }, { + "value" : "NO-766990615220996108717636", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:893e9b93-7ea2-4965-a163-4271011c78ba", + "partTypeInformation" : { + "manufacturerPartId" : "1O222E8-43", + "customerPartId" : "1O222E8-43", + "classification" : "component", + "nameAtManufacturer" : "Transmission", + "nameAtCustomer" : "Transmission" + } + } + }, { + "identification" : "aa0afddc-4f84-43ba-b8e6-bdc68e08f1aa", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "component" : [ { + "materialName" : "Carbon Steel", + "recycledContent" : 0, + "materialClass" : "1.1.2", + "quantity" : { + "materialValue" : 72.843, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CS2" + }, { + "materialName" : "Oil", + "recycledContent" : 0, + "materialClass" : "9.2", + "quantity" : { + "materialValue" : 6.9, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "liquid", + "materialAbbreviation" : "SAE40" + }, { + "materialName" : "Copper", + "recycledContent" : 0, + "materialClass" : "3.1", + "quantity" : { + "materialValue" : 1.2, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "aggregateState" : "solid", + "materialAbbreviation" : "CO7" + } ] + } + }, { + "identification" : "ab8e80dc-96cd-4887-b7eb-7a478fece7dd", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:db09e9f4-58db-4cd0-a0b6-4b24fb345c8f", + "childParts" : [ { + "quantity" : { + "quantityNumber" : "0.1908", + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b461b27e-e90e-404d-8d1d-2ba4668fe826" + } ] + } + }, { + "identification" : "20f6c64f-a602-45e5-b76c-8be2ba97425b", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000008TS", + "key" : "manufacturerId" + }, { + "value" : "23356R4-69", + "key" : "manufacturerPartId" + }, { + "value" : "NO-757549958601378393512051", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:db09e9f4-58db-4cd0-a0b6-4b24fb345c8f", + "partTypeInformation" : { + "manufacturerPartId" : "23356R4-69", + "customerPartId" : "23356R4-69", + "classification" : "component", + "nameAtManufacturer" : "Sensor", + "nameAtCustomer" : "Sensor" + } + } + }, { + "identification" : "f6c876a2-edc8-4c47-82ce-9c624928bbc4", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "NTIER Product", + "materialClass" : "5.5", + "component" : [ { + "materialName" : "Aluminium oxide", + "recycledContent" : 0, + "materialClass" : "5.5.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 60 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "" + }, { + "materialName" : "Other", + "recycledContent" : 0, + "materialClass" : "5.5.2", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 40 + }, + "aggregateState" : "", + "materialAbbreviation" : "" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "88edb6ae-0fac-481d-bc3c-929ca5ffb31a", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:a61c90b6-458e-4c50-8ca4-1a92b10560bb", + "childParts" : [ ] + } + }, { + "identification" : "57b483c6-3bba-41ab-8e54-3775a8aa12d1", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "component" : [ { + "materialName" : "Glue", + "materialClass" : "6.2", + "quantity" : { + "materialValue" : 0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "weight" : "0.2341", + "materialAbbreviation" : "GL338" + } ] + } + }, { + "identification" : "0a091fac-74bc-4b57-9aad-259f70f87939", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 0, + "materialClass" : "5.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 0, + "materialClass" : "5.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ], + "recycledContent" : 0 + } + }, { + "identification" : "5589eb36-e511-48f0-be46-ad20e993689f", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "88111709-49", + "key" : "manufacturerPartId" + }, { + "value" : "NO-891364318901274681144420", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c73f6d34-42af-481d-8685-6248951f992a", + "partTypeInformation" : { + "manufacturerPartId" : "88111709-49", + "customerPartId" : "88111709-49", + "classification" : "component", + "nameAtManufacturer" : "Axle part rear", + "nameAtCustomer" : "Axle part rear" + } + } + }, { + "identification" : "2b14c499-08f8-4900-842f-ea41ca8a084e", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "43501996-98", + "key" : "manufacturerPartId" + }, { + "value" : "NO-794948881365933357696563", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:51b4304b-43b9-4506-b9b0-85b270c95e92", + "partTypeInformation" : { + "manufacturerPartId" : "43501996-98", + "customerPartId" : "43501996-98", + "classification" : "component", + "nameAtManufacturer" : "Dashboard", + "nameAtCustomer" : "Dashboard" + } + } + }, { + "identification" : "5a91b766-487f-4930-a906-d6c3beb7f343", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "78744126-74", + "key" : "manufacturerPartId" + }, { + "value" : "NO-336501670323944754847120", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:690ea584-42ba-4905-a41c-bd75cab177e5", + "partTypeInformation" : { + "manufacturerPartId" : "78744126-74", + "customerPartId" : "78744126-74", + "classification" : "component", + "nameAtManufacturer" : "Taillight front", + "nameAtCustomer" : "Taillight front" + } + } + }, { + "identification" : "07de9d14-b2bd-49a9-9b87-f0f381e57aa9", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "85023955-75", + "key" : "manufacturerPartId" + }, { + "value" : "NO-404561020520407545527244", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d08ce285-be90-4d3b-8ded-71a1d87db410", + "partTypeInformation" : { + "manufacturerPartId" : "85023955-75", + "customerPartId" : "85023955-75", + "classification" : "component", + "nameAtManufacturer" : "Tailgate", + "nameAtCustomer" : "Tailgate" + } + } + }, { + "identification" : "9551adae-6657-4a5d-9370-a62c8ba95584", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "19073706-76", + "key" : "manufacturerPartId" + }, { + "value" : "NO-593917629278722495853130", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:9bf8955e-1a38-472b-a9f7-559724979546", + "partTypeInformation" : { + "manufacturerPartId" : "19073706-76", + "customerPartId" : "19073706-76", + "classification" : "component", + "nameAtManufacturer" : "Indicator right", + "nameAtCustomer" : "Indicator right" + } + } + }, { + "identification" : "3abcf47b-40cb-4020-a045-b5bc925007d1", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:78720ee2-e944-4d30-acd0-54128f951ea0", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:2c126e78-373f-424b-b281-b1d86cdbcb05" + } ] + } + }, { + "identification" : "42208246-b0bc-4fb7-86ae-aecabec83b72", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL000000000CR0", + "key" : "manufacturerId" + }, { + "value" : "22782277-50", + "key" : "manufacturerPartId" + }, { + "value" : "NO-864945181992987138826380", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:78720ee2-e944-4d30-acd0-54128f951ea0", + "partTypeInformation" : { + "manufacturerPartId" : "22782277-50", + "customerPartId" : "22782277-50", + "classification" : "component", + "nameAtManufacturer" : "Door f-l", + "nameAtCustomer" : "Door front-left" + } + } + }, { + "identification" : "84c86c97-545d-46c2-a3ce-be741bdc0d25", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000007UH", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-532171273576205329716343", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:2c126e78-373f-424b-b281-b1d86cdbcb05", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } + }, { + "identification" : "083d91cc-a42a-4fe2-9f57-9bfe7025543d", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "08901347-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-699286501909148179523124", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:57a9cdfd-c188-4c51-9ce0-53e2d5d2641e", + "partTypeInformation" : { + "manufacturerPartId" : "08901347-87", + "customerPartId" : "08901347-87", + "classification" : "component", + "nameAtManufacturer" : "Rims", + "nameAtCustomer" : "Rims" + } + } + }, { + "identification" : "4cbcda8f-14cc-4bcd-8e53-455285c8b5b4", + "aspectType" : "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload" : { + "catenaXId" : "urn:uuid:8858e724-552f-4207-afc4-9244f454c524", + "childParts" : [ { + "quantity" : { + "quantityNumber" : 1, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "AsBuilt", + "createdOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:f2895813-baed-4db2-a67d-ddb987ca7a45" + } ] + } + }, { + "identification" : "d8d19a96-4b2b-4b00-a29b-3c9b974aa578", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL000000000CR0", + "key" : "manufacturerId" + }, { + "value" : "95657362-64", + "key" : "manufacturerPartId" + }, { + "value" : "NO-161305774591896935305126", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8858e724-552f-4207-afc4-9244f454c524", + "partTypeInformation" : { + "manufacturerPartId" : "33740332-54", + "customerPartId" : "33740332-54", + "classification" : "component", + "nameAtManufacturer" : "Door f-r", + "nameAtCustomer" : "Door front-right" + } + } + }, { + "identification" : "2b1d12e5-064f-486f-b2a2-1cb657288b8d", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000007UH", + "key" : "manufacturerId" + }, { + "value" : "95657762-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-888672826169208924871100", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:f2895813-baed-4db2-a67d-ddb987ca7a45", + "partTypeInformation" : { + "manufacturerPartId" : "95657762-59", + "customerPartId" : "95657762-59", + "classification" : "component", + "nameAtManufacturer" : "Door Key", + "nameAtCustomer" : "Door Key" + } + } + }, { + "identification" : "4ad64f55-6d45-4a30-be09-dfb9214cdb65", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "20125432-59", + "key" : "manufacturerPartId" + }, { + "value" : "NO-285738124671946790755013", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:83e8f14f-331c-491c-90e0-bea81606bd11", + "partTypeInformation" : { + "manufacturerPartId" : "20125432-59", + "customerPartId" : "20125432-59", + "classification" : "component", + "nameAtManufacturer" : "Indicator left", + "nameAtCustomer" : "Indicator left" + } + } + }, { + "identification" : "b33bca2a-ebbd-4634-bbd0-b15c01982890", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "00871379-44", + "key" : "manufacturerPartId" + }, { + "value" : "NO-221529357828450992163277", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a94445fe-135b-4962-8902-a0cdc6bddfa4", + "partTypeInformation" : { + "manufacturerPartId" : "00871379-44", + "customerPartId" : "00871379-44", + "classification" : "component", + "nameAtManufacturer" : "Chassis", + "nameAtCustomer" : "Chassis" + } + } + }, { + "identification" : "b5e37539-271b-4964-aa13-6544e2c4f04f", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "45863316-60", + "key" : "manufacturerPartId" + }, { + "value" : "NO-771546429775857488005298", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:85ef35e7-5724-4ab2-a675-5b384e0762d5", + "partTypeInformation" : { + "manufacturerPartId" : "45863316-60", + "customerPartId" : "45863316-60", + "classification" : "component", + "nameAtManufacturer" : "Tires", + "nameAtCustomer" : "Tires" + } + } + }, { + "identification" : "bdd8c019-7625-43b0-b2b7-0cb057dfd62a", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "65529521-37", + "key" : "manufacturerPartId" + }, { + "value" : "NO-319328934538360919371441", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:74b2d602-6b75-45d1-96c6-4224ba2a0657", + "partTypeInformation" : { + "manufacturerPartId" : "65529521-37", + "customerPartId" : "65529521-37", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror left", + "nameAtCustomer" : "Exterior mirror left" + } + } + }, { + "identification" : "b9345b18-1a9e-49e7-926e-af42236ce5a3", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "09002013-68", + "key" : "manufacturerPartId" + }, { + "value" : "NO-327219257590621671110467", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8a941275-4c8d-4593-9623-ad365fc50976", + "partTypeInformation" : { + "manufacturerPartId" : "09002013-68", + "customerPartId" : "09002013-68", + "classification" : "component", + "nameAtManufacturer" : "Trailer coupling", + "nameAtCustomer" : "Tailer coupling" + } + } + }, { + "identification" : "ae3b7cb1-01e0-4e49-9bad-2e3123b86df9", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "73849201-61", + "key" : "manufacturerPartId" + }, { + "value" : "NO-248947073528659334520214", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:c6c831bb-d6a8-487a-86f0-03afaf2ea8a8", + "partTypeInformation" : { + "manufacturerPartId" : "73849201-61", + "customerPartId" : "73849201-61", + "classification" : "component", + "nameAtManufacturer" : "Catalysator", + "nameAtCustomer" : "Catalysator" + } + } + }, { + "identification" : "046c57d9-77c0-4d44-841e-c5988bdedd57", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "13769860-47", + "key" : "manufacturerPartId" + }, { + "value" : "NO-646750375569445335448929", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:8f0d942e-0cdc-4998-92ea-3195bd67994d", + "partTypeInformation" : { + "manufacturerPartId" : "13769860-47", + "customerPartId" : "13769860-47", + "classification" : "component", + "nameAtManufacturer" : "Fender left", + "nameAtCustomer" : "Fender right" + } + } + }, { + "identification" : "ca85a151-824f-4e51-a071-6a72fcff6abb", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "58471477-24", + "key" : "manufacturerPartId" + }, { + "value" : "NO-514120980650681577421549", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:04639340-31bc-47c4-a16c-e26ea785d447", + "partTypeInformation" : { + "manufacturerPartId" : "58471477-24", + "customerPartId" : "58471477-24", + "classification" : "component", + "nameAtManufacturer" : "Exterior mirror right", + "nameAtCustomer" : "Exterior mirror right" + } + } + }, { + "identification" : "0bf1d303-8fd2-4226-998c-7e85f2e75860", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "22768257-25", + "key" : "manufacturerPartId" + }, { + "value" : "NO-206166928849251423762317", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:d292e706-eb66-41ce-9bd4-bfb8d3061207", + "partTypeInformation" : { + "manufacturerPartId" : "22768257-25", + "customerPartId" : "22768257-25", + "classification" : "component", + "nameAtManufacturer" : "Bumper rear", + "nameAtCustomer" : "Bumper rear" + } + } + }, { + "identification" : "10a79937-40ee-4ed8-9f95-e0f528dbee90", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "81324139-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-172221858256197441698007", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:3d28c1cf-32f3-4156-abb8-7d2a307c30f4", + "partTypeInformation" : { + "manufacturerPartId" : "81324139-23", + "customerPartId" : "81324139-23", + "classification" : "component", + "nameAtManufacturer" : "Alternator", + "nameAtCustomer" : "Alternator" + } + } + }, { + "identification" : "951e49bc-b139-4417-a824-23e561ae3d13", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "36643162-35", + "key" : "manufacturerPartId" + }, { + "value" : "NO-339870276832989260997041", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a525aa1f-d015-457e-a4cc-87e5ec1f77b9", + "partTypeInformation" : { + "manufacturerPartId" : "36643162-35", + "customerPartId" : "36643162-35", + "classification" : "component", + "nameAtManufacturer" : "Fender right", + "nameAtCustomer" : "Fender right" + } + } + }, { + "identification" : "c09e787b-7c28-4fec-955d-65e42ac5479c", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "78141846-87", + "key" : "manufacturerPartId" + }, { + "value" : "NO-432831762226813140246654", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:5ae0a6cd-e60c-49fb-97ac-d1e8f4c51379", + "partTypeInformation" : { + "manufacturerPartId" : "78141846-87", + "customerPartId" : "78141846-87", + "classification" : "component", + "nameAtManufacturer" : "Starter motor", + "nameAtCustomer" : "Starter motor" + } + } + }, { + "identification" : "332d1137-f7e6-45b1-9f0a-9cfbc772efb5", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "45415162-57", + "key" : "manufacturerPartId" + }, { + "value" : "NO-063690465365817633826184", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:ef4d3d85-de67-4750-bea6-d139113eebc9", + "partTypeInformation" : { + "manufacturerPartId" : "45415162-57", + "customerPartId" : "45415162-57", + "classification" : "component", + "nameAtManufacturer" : "Led headlight", + "nameAtCustomer" : "Led headlight" + } + } + }, { + "identification" : "39b063f6-1b82-4341-a873-f433e44bdecb", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "61184040-23", + "key" : "manufacturerPartId" + }, { + "value" : "NO-317190466887910047967527", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:70e32d55-c470-4679-a2c4-acc77503b998", + "partTypeInformation" : { + "manufacturerPartId" : "61184040-23", + "customerPartId" : "61184040-23", + "classification" : "component", + "nameAtManufacturer" : "Taillight rear", + "nameAtCustomer" : "Taillight rear" + } + } + }, { + "identification" : "09e6f1b3-bcda-4407-8985-55f82210a87e", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL0000000002XY", + "key" : "manufacturerId" + }, { + "value" : "94421589-82", + "key" : "manufacturerPartId" + }, { + "value" : "NO-298601484959777552144950", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:a309422e-f5a4-4656-9158-91b851da9aa1", + "partTypeInformation" : { + "manufacturerPartId" : "94421589-82", + "customerPartId" : "94421589-82", + "classification" : "component", + "nameAtManufacturer" : "Engine hood", + "nameAtCustomer" : "Engine hood" + } + } + } ] +} \ No newline at end of file From 35af158e0942f9ad21692c314afd82ef806994d2 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Thu, 15 Dec 2022 09:27:48 +0100 Subject: [PATCH 18/62] fix(workflows):[-] Add workflow_dispatch --- .github/workflows/synch-env-branch.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/synch-env-branch.yml b/.github/workflows/synch-env-branch.yml index 81d07ba6d0..6e9f740e4e 100644 --- a/.github/workflows/synch-env-branch.yml +++ b/.github/workflows/synch-env-branch.yml @@ -1,6 +1,7 @@ name: "Sync main to IRS-Env" on: + workflow_dispatch: push: branches: - main From 89a699219fee4346c629442627499cf8aef1035d Mon Sep 17 00:00:00 2001 From: ds-alexander-bulgakov Date: Thu, 15 Dec 2022 10:18:26 +0100 Subject: [PATCH 19/62] THI-739: added expected jsons for test TRI-1000 --- .../TRI-1000-expected-relationships.json | 723 ++++++ .../TRI-1000-expected-submodels.json | 2073 +++++++++++++++++ 2 files changed, 2796 insertions(+) create mode 100644 cucumber-tests/src/test/resources/expected-files/TRI-1000-expected-relationships.json create mode 100644 cucumber-tests/src/test/resources/expected-files/TRI-1000-expected-submodels.json diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-1000-expected-relationships.json b/cucumber-tests/src/test/resources/expected-files/TRI-1000-expected-relationships.json new file mode 100644 index 0000000000..a77118b8d3 --- /dev/null +++ b/cucumber-tests/src/test/resources/expected-files/TRI-1000-expected-relationships.json @@ -0,0 +1,723 @@ +{ + "relationships" : [ { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5e486f1c-2039-4879-a6a5-a397ae391cea" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:98680e43-41e9-483a-b805-3b8b6d43f4ba" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ffe0e30f-0da9-441b-abaf-ef9fd50f48dc" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9be57574-aa5c-4dd4-903e-0b8fa26b2873" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:0f98a32c-0b28-45f8-87ad-cb14cb513638" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:45c97e44-1610-4f03-aca8-590699cc21db" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d83646dc-eb0d-4fe1-996f-1c7b38dd11df" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:14a6799d-6b70-4333-8570-4c157a0b9819" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:150a07a0-f23c-4510-9826-1c5c0e769065" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d070adf0-55b6-41ab-8338-27e4a7889f93" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e0162ad7-bd69-4aee-b42e-715700359ce7" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1dda3d89-1521-43ad-ad90-2c5ecf8194d7" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:fa995adf-e129-4382-b82d-83922849756e" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:0360d7d2-eb31-49b4-8bb0-95b0bf24567f" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6b758d1b-cf93-4861-bf26-dec1b2799dd7" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:2a8b6d2c-351c-4e72-92c9-69dd262a251b" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:7780de9b-952c-426b-bff1-35e6e6af9ed7" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ba975ccc-a3bb-4ce5-80b9-726865b73c92" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1fb6dd35-f241-4d27-8c3c-2be545103f51" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:605f00e0-0c08-4a78-b5ee-4961971dd59e" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:0b652f9a-1415-41d0-a7a8-b1cebf3657c7" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3c75d562-2fec-45f3-87b9-117c0efeff2b" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:52a9bbaf-c74a-42d8-adec-c5e6b1c62600" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:2b8cf99d-c2cd-43c2-86f2-9fc0f6f24bc0" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:f225decc-42c1-410d-b8f5-6e69614ac327" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ca7a77cd-6e06-4879-833b-099692042d00" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4c47f2c9-0bdc-455e-bc11-fa1a35367bee" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:2ed1f4a5-2648-4f48-a15a-5225b54b5fcd" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:30924491-2e76-4094-abd5-a552ca5b4587" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:71427525-3c37-4a4a-95c4-10ad759302f0" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e01ab9af-57d2-4e12-9c27-e384c2390689" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:33ddd935-bef9-4903-86ee-2461f86bc58b" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1b0e29b2-d899-49ee-b30a-64e54b035e9b" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:77cc385a-8924-4be9-a38d-22b8a011386d" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:158e783b-4e6c-44e7-8a80-39428d369dbe" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:14a6799d-6b70-4333-8570-4c157a0b9819", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:77baffa3-4ae0-477e-b5b4-3f1d28dd439b" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:14a6799d-6b70-4333-8570-4c157a0b9819", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3f9dbfb4-7eb1-420e-808f-a5da1024ba86" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:14a6799d-6b70-4333-8570-4c157a0b9819", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:79fabb78-bbf3-4456-b31c-eaa9534e0e30" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:3f9dbfb4-7eb1-420e-808f-a5da1024ba86", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:2e000ff1-afca-4de7-a492-a15e3f30268c" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d070adf0-55b6-41ab-8338-27e4a7889f93", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9e3d214a-c23a-406c-9dd6-5e7526bcc171" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:ca7a77cd-6e06-4879-833b-099692042d00", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a283e2ff-f361-4d27-8b71-b1aa8a98d495" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:77cc385a-8924-4be9-a38d-22b8a011386d", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5dc845f6-f415-42d5-b6a1-31e133eef704" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:77cc385a-8924-4be9-a38d-22b8a011386d", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:21e9765e-12a0-44a1-b65d-7a0029e4723c" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:77cc385a-8924-4be9-a38d-22b8a011386d", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d6d5dcfa-02aa-4fcb-8b6d-0dd65f2f64c0" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d6d5dcfa-02aa-4fcb-8b6d-0dd65f2f64c0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a1c33a3f-d6de-4d0f-b365-aba0672a91f3" + }, + "aspectType" : "AssemblyPartRelationship" + } ] +} \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-1000-expected-submodels.json b/cucumber-tests/src/test/resources/expected-files/TRI-1000-expected-submodels.json new file mode 100644 index 0000000000..e7257aa83b --- /dev/null +++ b/cucumber-tests/src/test/resources/expected-files/TRI-1000-expected-submodels.json @@ -0,0 +1,2073 @@ +{ + "submodels": [ + { + "identification": "3fc71e10-4c56-47a9-991d-92b9dd45cf0f", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:9be57574-aa5c-4dd4-903e-0b8fa26b2873" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:4c47f2c9-0bdc-455e-bc11-fa1a35367bee" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:e01ab9af-57d2-4e12-9c27-e384c2390689" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:30924491-2e76-4094-abd5-a552ca5b4587" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:ca7a77cd-6e06-4879-833b-099692042d00" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:d070adf0-55b6-41ab-8338-27e4a7889f93" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:45c97e44-1610-4f03-aca8-590699cc21db" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:ffe0e30f-0da9-441b-abaf-ef9fd50f48dc" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:2a8b6d2c-351c-4e72-92c9-69dd262a251b" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:ba975ccc-a3bb-4ce5-80b9-726865b73c92" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:0360d7d2-eb31-49b4-8bb0-95b0bf24567f" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:33ddd935-bef9-4903-86ee-2461f86bc58b" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:71427525-3c37-4a4a-95c4-10ad759302f0" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:52a9bbaf-c74a-42d8-adec-c5e6b1c62600" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:6b758d1b-cf93-4861-bf26-dec1b2799dd7" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:150a07a0-f23c-4510-9826-1c5c0e769065" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:d83646dc-eb0d-4fe1-996f-1c7b38dd11df" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:3c75d562-2fec-45f3-87b9-117c0efeff2b" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:7780de9b-952c-426b-bff1-35e6e6af9ed7" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:605f00e0-0c08-4a78-b5ee-4961971dd59e" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:2b8cf99d-c2cd-43c2-86f2-9fc0f6f24bc0" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:5e486f1c-2039-4879-a6a5-a397ae391cea" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1b0e29b2-d899-49ee-b30a-64e54b035e9b" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:0b652f9a-1415-41d0-a7a8-b1cebf3657c7" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:158e783b-4e6c-44e7-8a80-39428d369dbe" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:0f98a32c-0b28-45f8-87ad-cb14cb513638" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f225decc-42c1-410d-b8f5-6e69614ac327" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1dda3d89-1521-43ad-ad90-2c5ecf8194d7" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:fa995adf-e129-4382-b82d-83922849756e" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:98680e43-41e9-483a-b805-3b8b6d43f4ba" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1fb6dd35-f241-4d27-8c3c-2be545103f51" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:e0162ad7-bd69-4aee-b42e-715700359ce7" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:14a6799d-6b70-4333-8570-4c157a0b9819" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:77cc385a-8924-4be9-a38d-22b8a011386d" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:2ed1f4a5-2648-4f48-a15a-5225b54b5fcd" + } + ] + } + }, + { + "identification": "ea7281db-fd25-4221-8a3c-d959c596fb9d", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "PQ-96", + "key": "manufacturerPartId" + }, + { + "value": "OMAXMHWUYJFZXUFNY", + "key": "partInstanceId" + }, + { + "value": "OMAXMHWUYJFZXUFNY", + "key": "van" + } + ], + "manufacturingInformation": { + "date": "2017-10-21T03:35:25.000Z", + "country": "DEU" + }, + "catenaXId": "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "partTypeInformation": { + "manufacturerPartId": "PQ-96", + "classification": "product", + "nameAtManufacturer": "Vehicle Combustion" + } + } + }, + { + "identification": "d05d1a29-4a68-4f3d-9f3b-248b470ab2b7", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "45415162-57", + "key": "manufacturerPartId" + }, + { + "value": "NO-236384067505209103841443", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:5e486f1c-2039-4879-a6a5-a397ae391cea", + "partTypeInformation": { + "manufacturerPartId": "45415162-57", + "customerPartId": "45415162-57", + "classification": "component", + "nameAtManufacturer": "Led headlight", + "nameAtCustomer": "Led headlight" + } + } + }, + { + "identification": "eb1fe3b1-ab0e-4b9a-ac60-7a8d9f669a16", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "00871379-44", + "key": "manufacturerPartId" + }, + { + "value": "NO-102414501667903942248382", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:98680e43-41e9-483a-b805-3b8b6d43f4ba", + "partTypeInformation": { + "manufacturerPartId": "00871379-44", + "customerPartId": "00871379-44", + "classification": "component", + "nameAtManufacturer": "Chassis", + "nameAtCustomer": "Chassis" + } + } + }, + { + "identification": "d01ebbd5-e58b-4028-9931-527625178c09", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "28673126-98", + "key": "manufacturerPartId" + }, + { + "value": "NO-567251685920541706182879", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:ffe0e30f-0da9-441b-abaf-ef9fd50f48dc", + "partTypeInformation": { + "manufacturerPartId": "28673126-98", + "customerPartId": "28673126-98", + "classification": "component", + "nameAtManufacturer": "Door r-r", + "nameAtCustomer": "Door rear-right" + } + } + }, + { + "identification": "7a02806a-898a-4125-a42f-00e7d281ef13", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "10030939-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-929866761108620234018128", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:9be57574-aa5c-4dd4-903e-0b8fa26b2873", + "partTypeInformation": { + "manufacturerPartId": "10030939-59", + "customerPartId": "10030939-59", + "classification": "component", + "nameAtManufacturer": "Engine", + "nameAtCustomer": "Engine" + } + } + }, + { + "identification": "a04426a3-a0c2-4175-a089-b5b18a8dd022", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "61184040-23", + "key": "manufacturerPartId" + }, + { + "value": "NO-294174952489745061679074", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:0f98a32c-0b28-45f8-87ad-cb14cb513638", + "partTypeInformation": { + "manufacturerPartId": "61184040-23", + "customerPartId": "61184040-23", + "classification": "component", + "nameAtManufacturer": "Taillight rear", + "nameAtCustomer": "Taillight rear" + } + } + }, + { + "identification": "62665074-2bf4-4f5a-83f0-1ece7e2cae75", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "15635759-16", + "key": "manufacturerPartId" + }, + { + "value": "NO-321285761007326877941635", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:45c97e44-1610-4f03-aca8-590699cc21db", + "partTypeInformation": { + "manufacturerPartId": "15635759-16", + "customerPartId": "15635759-16", + "classification": "component", + "nameAtManufacturer": "Door r-l", + "nameAtCustomer": "Door rear-left" + } + } + }, + { + "identification": "26835769-0e07-460f-a9c8-fe1db52d2a48", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "09002013-68", + "key": "manufacturerPartId" + }, + { + "value": "NO-216340370215215423257350", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:d83646dc-eb0d-4fe1-996f-1c7b38dd11df", + "partTypeInformation": { + "manufacturerPartId": "09002013-68", + "customerPartId": "09002013-68", + "classification": "component", + "nameAtManufacturer": "Trailer coupling", + "nameAtCustomer": "Tailer coupling" + } + } + }, + { + "identification": "6c6b03cb-0b5f-4ca4-8d41-51695d41fda8", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:14a6799d-6b70-4333-8570-4c157a0b9819", + "childParts": [ + { + "quantity": { + "quantityNumber": "0.2014", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:79fabb78-bbf3-4456-b31c-eaa9534e0e30" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:3f9dbfb4-7eb1-420e-808f-a5da1024ba86" + }, + { + "quantity": { + "quantityNumber": "0.2341", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:77baffa3-4ae0-477e-b5b4-3f1d28dd439b" + } + ] + } + }, + { + "identification": "ed925698-0067-4d25-80bc-9465b52400ae", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000005VV", + "key": "manufacturerId" + }, + { + "value": "1O222E8-43", + "key": "manufacturerPartId" + }, + { + "value": "NO-692125473551469319408192", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:14a6799d-6b70-4333-8570-4c157a0b9819", + "partTypeInformation": { + "manufacturerPartId": "1O222E8-43", + "customerPartId": "1O222E8-43", + "classification": "component", + "nameAtManufacturer": "Transmission", + "nameAtCustomer": "Transmission" + } + } + }, + { + "identification": "2c2ea700-232a-4a41-b114-80d2398eb91c", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:77baffa3-4ae0-477e-b5b4-3f1d28dd439b", + "childParts": [] + } + }, + { + "identification": "658f0eaf-952a-48b3-a100-35135c842578", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:3f9dbfb4-7eb1-420e-808f-a5da1024ba86", + "childParts": [ + { + "quantity": { + "quantityNumber": "0.1908", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:2e000ff1-afca-4de7-a492-a15e3f30268c" + } + ] + } + }, + { + "identification": "468ba7cb-0283-4087-bc8a-bd9c16bcf013", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000008TS", + "key": "manufacturerId" + }, + { + "value": "09972X8-56", + "key": "manufacturerPartId" + }, + { + "value": "NO-274971011237938158521976", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:3f9dbfb4-7eb1-420e-808f-a5da1024ba86", + "partTypeInformation": { + "manufacturerPartId": "09972X8-56", + "customerPartId": "09972X8-56", + "classification": "component", + "nameAtManufacturer": "Sensor", + "nameAtCustomer": "Sensor" + } + } + }, + { + "identification": "726ec254-bdd4-4426-94c6-56864276856f", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "58471477-24", + "key": "manufacturerPartId" + }, + { + "value": "NO-949364455021589801122705", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:150a07a0-f23c-4510-9826-1c5c0e769065", + "partTypeInformation": { + "manufacturerPartId": "58471477-24", + "customerPartId": "58471477-24", + "classification": "component", + "nameAtManufacturer": "Exterior mirror right", + "nameAtCustomer": "Exterior mirror right" + } + } + }, + { + "identification": "d848d94e-e3a2-4ce4-b8c1-8495b72095d2", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:d070adf0-55b6-41ab-8338-27e4a7889f93", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:9e3d214a-c23a-406c-9dd6-5e7526bcc171" + } + ] + } + }, + { + "identification": "f3571940-b7d8-407b-88f2-49ade43c5fd5", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000CR0", + "key": "manufacturerId" + }, + { + "value": "95657362-64", + "key": "manufacturerPartId" + }, + { + "value": "NO-433549922575513403397780", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:d070adf0-55b6-41ab-8338-27e4a7889f93", + "partTypeInformation": { + "manufacturerPartId": "33740332-54", + "customerPartId": "33740332-54", + "classification": "component", + "nameAtManufacturer": "Door f-r", + "nameAtCustomer": "Door front-right" + } + } + }, + { + "identification": "ddd12567-4609-47a0-8dfe-4d8828cc7421", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000007UH", + "key": "manufacturerId" + }, + { + "value": "95657762-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-082209454679959723570831", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:9e3d214a-c23a-406c-9dd6-5e7526bcc171", + "partTypeInformation": { + "manufacturerPartId": "95657762-59", + "customerPartId": "95657762-59", + "classification": "component", + "nameAtManufacturer": "Door Key", + "nameAtCustomer": "Door Key" + } + } + }, + { + "identification": "13a048dc-0e08-4164-85cf-9e6d60a9b9f5", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "45863316-60", + "key": "manufacturerPartId" + }, + { + "value": "NO-038764514933405759377020", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:e0162ad7-bd69-4aee-b42e-715700359ce7", + "partTypeInformation": { + "manufacturerPartId": "45863316-60", + "customerPartId": "45863316-60", + "classification": "component", + "nameAtManufacturer": "Tires", + "nameAtCustomer": "Tires" + } + } + }, + { + "identification": "8ac31c1e-0720-4e80-90fc-c59b515b6b6e", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "12093297-03", + "key": "manufacturerPartId" + }, + { + "value": "NO-517520175491957036332052", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:1dda3d89-1521-43ad-ad90-2c5ecf8194d7", + "partTypeInformation": { + "manufacturerPartId": "12093297-03", + "customerPartId": "12093297-03", + "classification": "component", + "nameAtManufacturer": "Axle part front", + "nameAtCustomer": "Axle part front" + } + } + }, + { + "identification": "5286fcaa-a29b-4d88-ae90-a891f479d4c9", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "88111709-49", + "key": "manufacturerPartId" + }, + { + "value": "NO-580312446974891552072873", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:fa995adf-e129-4382-b82d-83922849756e", + "partTypeInformation": { + "manufacturerPartId": "88111709-49", + "customerPartId": "88111709-49", + "classification": "component", + "nameAtManufacturer": "Axle part rear", + "nameAtCustomer": "Axle part rear" + } + } + }, + { + "identification": "f087a8d1-b6c1-41a6-a5ee-a2444c88dd36", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "13769860-47", + "key": "manufacturerPartId" + }, + { + "value": "NO-726879617580071751278553", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:0360d7d2-eb31-49b4-8bb0-95b0bf24567f", + "partTypeInformation": { + "manufacturerPartId": "13769860-47", + "customerPartId": "13769860-47", + "classification": "component", + "nameAtManufacturer": "Fender left", + "nameAtCustomer": "Fender right" + } + } + }, + { + "identification": "eb448b85-092c-4515-9e06-4c51034b2a94", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "65529521-37", + "key": "manufacturerPartId" + }, + { + "value": "NO-900219854891120817329621", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:6b758d1b-cf93-4861-bf26-dec1b2799dd7", + "partTypeInformation": { + "manufacturerPartId": "65529521-37", + "customerPartId": "65529521-37", + "classification": "component", + "nameAtManufacturer": "Exterior mirror left", + "nameAtCustomer": "Exterior mirror left" + } + } + }, + { + "identification": "7d7c2f5e-885f-4969-b784-7d08ce7eb9a5", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "94421589-82", + "key": "manufacturerPartId" + }, + { + "value": "NO-857828568134069581476475", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:2a8b6d2c-351c-4e72-92c9-69dd262a251b", + "partTypeInformation": { + "manufacturerPartId": "94421589-82", + "customerPartId": "94421589-82", + "classification": "component", + "nameAtManufacturer": "Engine hood", + "nameAtCustomer": "Engine hood" + } + } + }, + { + "identification": "b1f072a2-0b0a-4758-801e-8371560830c6", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "77795937-13", + "key": "manufacturerPartId" + }, + { + "value": "NO-518334661713036883672023", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:7780de9b-952c-426b-bff1-35e6e6af9ed7", + "partTypeInformation": { + "manufacturerPartId": "77795937-13", + "customerPartId": "77795937-13", + "classification": "component", + "nameAtManufacturer": "Steering wheel", + "nameAtCustomer": "Steering wheel" + } + } + }, + { + "identification": "ed4a725c-97e0-4138-bb4d-309f6501d03e", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "85023955-75", + "key": "manufacturerPartId" + }, + { + "value": "NO-772799052405218887982178", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:ba975ccc-a3bb-4ce5-80b9-726865b73c92", + "partTypeInformation": { + "manufacturerPartId": "85023955-75", + "customerPartId": "85023955-75", + "classification": "component", + "nameAtManufacturer": "Tailgate", + "nameAtCustomer": "Tailgate" + } + } + }, + { + "identification": "a2b05840-a185-49ed-a59f-eefd4cf9e933", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "08901347-87", + "key": "manufacturerPartId" + }, + { + "value": "NO-029945095806403841831848", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:1fb6dd35-f241-4d27-8c3c-2be545103f51", + "partTypeInformation": { + "manufacturerPartId": "08901347-87", + "customerPartId": "08901347-87", + "classification": "component", + "nameAtManufacturer": "Rims", + "nameAtCustomer": "Rims" + } + } + }, + { + "identification": "be15f5a0-1516-4adf-98f3-87e74f9377de", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "20125432-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-706079093154846848693949", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:605f00e0-0c08-4a78-b5ee-4961971dd59e", + "partTypeInformation": { + "manufacturerPartId": "20125432-59", + "customerPartId": "20125432-59", + "classification": "component", + "nameAtManufacturer": "Indicator left", + "nameAtCustomer": "Indicator left" + } + } + }, + { + "identification": "52407f9a-c034-4040-8c17-bb3f49ec16ca", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "81324139-23", + "key": "manufacturerPartId" + }, + { + "value": "NO-572221206270565083570843", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:0b652f9a-1415-41d0-a7a8-b1cebf3657c7", + "partTypeInformation": { + "manufacturerPartId": "81324139-23", + "customerPartId": "81324139-23", + "classification": "component", + "nameAtManufacturer": "Alternator", + "nameAtCustomer": "Alternator" + } + } + }, + { + "identification": "31547799-786c-4630-b876-7074be1fd5ce", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "43501996-98", + "key": "manufacturerPartId" + }, + { + "value": "NO-212655088235382507889682", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:3c75d562-2fec-45f3-87b9-117c0efeff2b", + "partTypeInformation": { + "manufacturerPartId": "43501996-98", + "customerPartId": "43501996-98", + "classification": "component", + "nameAtManufacturer": "Dashboard", + "nameAtCustomer": "Dashboard" + } + } + }, + { + "identification": "b54f5803-c724-43a9-8f14-676eca3b5817", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "22768257-25", + "key": "manufacturerPartId" + }, + { + "value": "NO-776070234311599563201902", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:52a9bbaf-c74a-42d8-adec-c5e6b1c62600", + "partTypeInformation": { + "manufacturerPartId": "22768257-25", + "customerPartId": "22768257-25", + "classification": "component", + "nameAtManufacturer": "Bumper rear", + "nameAtCustomer": "Bumper rear" + } + } + }, + { + "identification": "2a17386e-c1ea-4ad3-81d1-120f876ffdd8", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "19073706-76", + "key": "manufacturerPartId" + }, + { + "value": "NO-289310428389433911127266", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:2b8cf99d-c2cd-43c2-86f2-9fc0f6f24bc0", + "partTypeInformation": { + "manufacturerPartId": "19073706-76", + "customerPartId": "19073706-76", + "classification": "component", + "nameAtManufacturer": "Indicator right", + "nameAtCustomer": "Indicator right" + } + } + }, + { + "identification": "1a4dfe41-0b5b-4398-85d2-6b5249224ae4", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "78744126-74", + "key": "manufacturerPartId" + }, + { + "value": "NO-612172331813585100343832", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:f225decc-42c1-410d-b8f5-6e69614ac327", + "partTypeInformation": { + "manufacturerPartId": "78744126-74", + "customerPartId": "78744126-74", + "classification": "component", + "nameAtManufacturer": "Taillight front", + "nameAtCustomer": "Taillight front" + } + } + }, + { + "identification": "2a5edbe9-087d-4afb-8465-395c1c1c40ac", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:ca7a77cd-6e06-4879-833b-099692042d00", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:a283e2ff-f361-4d27-8b71-b1aa8a98d495" + } + ] + } + }, + { + "identification": "d0b90f32-66c9-49d4-b051-e885b5b9df23", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000CR0", + "key": "manufacturerId" + }, + { + "value": "22782277-50", + "key": "manufacturerPartId" + }, + { + "value": "NO-542654476142664406586064", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:ca7a77cd-6e06-4879-833b-099692042d00", + "partTypeInformation": { + "manufacturerPartId": "22782277-50", + "customerPartId": "22782277-50", + "classification": "component", + "nameAtManufacturer": "Door f-l", + "nameAtCustomer": "Door front-left" + } + } + }, + { + "identification": "b19190f5-0b70-46e6-a2d3-7f62f43edb89", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000007UH", + "key": "manufacturerId" + }, + { + "value": "95657762-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-933008337587489706828110", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:a283e2ff-f361-4d27-8b71-b1aa8a98d495", + "partTypeInformation": { + "manufacturerPartId": "95657762-59", + "customerPartId": "95657762-59", + "classification": "component", + "nameAtManufacturer": "Door Key", + "nameAtCustomer": "Door Key" + } + } + }, + { + "identification": "212e6eda-6013-4830-93eb-8bdecf8d7d70", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "32494586-73", + "key": "manufacturerPartId" + }, + { + "value": "NO-603344921447238817745532", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:4c47f2c9-0bdc-455e-bc11-fa1a35367bee", + "partTypeInformation": { + "manufacturerPartId": "32494586-73", + "customerPartId": "32494586-73", + "classification": "component", + "nameAtManufacturer": "Differential Gear", + "nameAtCustomer": "Differential Gear" + } + } + }, + { + "identification": "d5736923-c047-423d-9cfa-9eadb2123345", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000BRP", + "key": "manufacturerId" + }, + { + "value": "73849201-61", + "key": "manufacturerPartId" + }, + { + "value": "NO-018085447186371805867299", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:2ed1f4a5-2648-4f48-a15a-5225b54b5fcd", + "partTypeInformation": { + "manufacturerPartId": "43847201-25", + "customerPartId": "43847201-25", + "classification": "component", + "nameAtManufacturer": "DXM Part I", + "nameAtCustomer": "DXM Part I" + } + } + }, + { + "identification": "4b01ab3f-8db3-4357-9609-9dd7396ebbb1", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "73849201-61", + "key": "manufacturerPartId" + }, + { + "value": "NO-357750498602967582649356", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:30924491-2e76-4094-abd5-a552ca5b4587", + "partTypeInformation": { + "manufacturerPartId": "73849201-61", + "customerPartId": "73849201-61", + "classification": "component", + "nameAtManufacturer": "Catalysator", + "nameAtCustomer": "Catalysator" + } + } + }, + { + "identification": "0ca9cc76-6fc3-424d-a7bc-2a6b40e0f69b", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "54165444-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-816484702369612440687924", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:71427525-3c37-4a4a-95c4-10ad759302f0", + "partTypeInformation": { + "manufacturerPartId": "54165444-59", + "customerPartId": "54165444-59", + "classification": "component", + "nameAtManufacturer": "Bumper front", + "nameAtCustomer": "Bumper front" + } + } + }, + { + "identification": "a5478f67-f443-4441-a5d6-78ad1a0a4c2c", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "67034319-44", + "key": "manufacturerPartId" + }, + { + "value": "NO-250503000146812502745948", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:e01ab9af-57d2-4e12-9c27-e384c2390689", + "partTypeInformation": { + "manufacturerPartId": "67034319-44", + "customerPartId": "67034319-44", + "classification": "component", + "nameAtManufacturer": "Turbocharger", + "nameAtCustomer": "Turbocharger" + } + } + }, + { + "identification": "9e2f3ea9-f396-48ca-b33f-0fb0d783e53a", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "36643162-35", + "key": "manufacturerPartId" + }, + { + "value": "NO-315930531665315099417208", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:33ddd935-bef9-4903-86ee-2461f86bc58b", + "partTypeInformation": { + "manufacturerPartId": "36643162-35", + "customerPartId": "36643162-35", + "classification": "component", + "nameAtManufacturer": "Fender right", + "nameAtCustomer": "Fender right" + } + } + }, + { + "identification": "0434d26e-8d9a-47d2-869c-d98c2d70f096", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "78141846-87", + "key": "manufacturerPartId" + }, + { + "value": "NO-930762691425521539374304", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:1b0e29b2-d899-49ee-b30a-64e54b035e9b", + "partTypeInformation": { + "manufacturerPartId": "78141846-87", + "customerPartId": "78141846-87", + "classification": "component", + "nameAtManufacturer": "Starter motor", + "nameAtCustomer": "Starter motor" + } + } + }, + { + "identification": "bb18643e-1c38-44cc-9554-cc1521308b9d", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:77cc385a-8924-4be9-a38d-22b8a011386d", + "childParts": [ + { + "quantity": { + "quantityNumber": "0.3301", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:5dc845f6-f415-42d5-b6a1-31e133eef704" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:d6d5dcfa-02aa-4fcb-8b6d-0dd65f2f64c0" + }, + { + "quantity": { + "quantityNumber": "0.2001", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:21e9765e-12a0-44a1-b65d-7a0029e4723c" + } + ] + } + }, + { + "identification": "71a638f3-22e0-4503-90bf-8febbfe18b12", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000006V6", + "key": "manufacturerId" + }, + { + "value": "55947Q0-43", + "key": "manufacturerPartId" + }, + { + "value": "NO-256166862004962181116749", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:77cc385a-8924-4be9-a38d-22b8a011386d", + "partTypeInformation": { + "manufacturerPartId": "55947Q0-43", + "customerPartId": "55947Q0-43", + "classification": "component", + "nameAtManufacturer": "ECU", + "nameAtCustomer": "ECU" + } + } + }, + { + "identification": "b4fc7ac0-c734-4199-ba4d-04d8c495fe31", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000003X9", + "key": "manufacturerId" + }, + { + "value": "35422V5-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-392101485736859549787332", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:21e9765e-12a0-44a1-b65d-7a0029e4723c", + "partTypeInformation": { + "manufacturerPartId": "35422V5-04", + "customerPartId": "35422V5-04", + "classification": "component", + "nameAtManufacturer": "Engineering Plastics", + "nameAtCustomer": "Engineering Plastics" + } + } + }, + { + "identification": "a09aa09e-e072-439f-a3e2-9801f3af2544", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:d6d5dcfa-02aa-4fcb-8b6d-0dd65f2f64c0", + "childParts": [ + { + "quantity": { + "quantityNumber": "0.1908", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:a1c33a3f-d6de-4d0f-b365-aba0672a91f3" + } + ] + } + }, + { + "identification": "61b2fd96-8830-4367-a43d-2f2244860da6", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000008TS", + "key": "manufacturerId" + }, + { + "value": "76879Q0-92", + "key": "manufacturerPartId" + }, + { + "value": "NO-023886650050433975185107", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:d6d5dcfa-02aa-4fcb-8b6d-0dd65f2f64c0", + "partTypeInformation": { + "manufacturerPartId": "76879Q0-92", + "customerPartId": "76879Q0-92", + "classification": "component", + "nameAtManufacturer": "Sensor", + "nameAtCustomer": "Sensor" + } + } + }, + { + "identification": "e14c00a7-4b1b-4c99-98ae-8a0c597d000c", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "57929013-09", + "key": "manufacturerPartId" + }, + { + "value": "NO-390076546007934888944663", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:158e783b-4e6c-44e7-8a80-39428d369dbe", + "partTypeInformation": { + "manufacturerPartId": "57929013-09", + "customerPartId": "57929013-09", + "classification": "component", + "nameAtManufacturer": "AC compressor", + "nameAtCustomer": "Air conditioning compressor" + } + } + }, + { + "identification": "e14c00a7-4b1b-4c99-98ae-8a0c597d000c", + "aspectType": "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction", + "payload": { + "catenaXId": "urn:uuid:74e24bc0-6646-43b9-a104-09aa5ca49896", + "dismantlerProperties": { + "expiryDate": "2022-07-11T08:38:46.743Z", + "dismantlerAuditorContact": { + "phone": "+49458404363", + "fax": "+497740070" + }, + "dismantlerContact": { + "phone": "+492795608", + "fax": "+49476895" + }, + "dismantlerAuditorAddress": { + "zip": "68161", + "country": "DEU", + "street": "Speyerer Straße", + "houseNumber": "45", + "name": "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "location": "Mannheim" + }, + "receiverAuditorAdress": { + "zip": "68161", + "country": "DEU", + "street": "Berliner Straße", + "houseNumber": "42", + "name": "VLhpfQGTMDYpsBZxvfBoeygjb", + "location": "Mannheim" + }, + "dismantlerAdress": { + "zip": "68165", + "country": "DEU", + "street": "Schubertstraße", + "houseNumber": "11", + "name": "JxkyvRnL", + "location": "Mannheim" + }, + "issueDate": "2022-07-11T08:38:46.743Z", + "isVehicleWithdrawnFromService": false, + "governmentAdress": { + "zip": "10719", + "country": "DEU", + "street": "Pariser Straße", + "houseNumber": "45", + "name": "RYtGKbgicZaHCBRQDSx", + "location": "Berlin" + } + }, + "serialNumber": "DIS1087432", + "companyNumber": "S30A00265", + "vehicleProperties": { + "licenseAbbreviation": "MA", + "isVehicleInformationComplete": false, + "licensePlate": "MA-UI123", + "identification": "WBAAY711X0KC28153", + "emptyWeight": 1.79, + "model": "Model A", + "brand": "OME", + "class": "01", + "firstRegistration": "19.12.2014" + }, + "returnPointProperties": { + "expiryDate": "2022-07-11T08:38:46.741Z", + "receiverAuditorContact": { + "phone": "+49004417570", + "fax": "+495516625649" + }, + "receiverContact": { + "phone": "+4912263422", + "fax": "+49288164270" + }, + "receiverAuditorAdress": { + "zip": "68161", + "country": "DEU", + "street": "Speyerer Straße", + "houseNumber": "45", + "name": "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location": "Mannheim" + }, + "issueDate": "2022-07-11T08:38:46.741Z", + "isVehicleWithdrawnFromService": true + }, + "vehicleOwnerProperties": { + "isVehicleOwnerInformationComplete": true, + "vehicleOwnerAddress": { + "zip": "68163", + "country": "DEU", + "street": "Rheinvillen Straße", + "houseNumber": "7", + "name": "eOMtThyhVNLWUZNRcBaQKxI", + "location": "Mannheim" + }, + "citizenship": "DEU" + }, + "dismantlingDate": "2022-07-11T08:38:46.739Z" + } + } + ] +} \ No newline at end of file From 6cfad0af7f7407564e7608c42c26094e07c37b6d Mon Sep 17 00:00:00 2001 From: ds-alexander-bulgakov Date: Thu, 15 Dec 2022 10:30:56 +0100 Subject: [PATCH 20/62] THI-739: added expected jsons for test TRI-1001 --- .../TRI-1001-expected-relationships.json | 2851 ++++++ .../TRI-1001-expected-submodels.json | 8271 +++++++++++++++++ 2 files changed, 11122 insertions(+) create mode 100644 cucumber-tests/src/test/resources/expected-files/TRI-1001-expected-relationships.json create mode 100644 cucumber-tests/src/test/resources/expected-files/TRI-1001-expected-submodels.json diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-1001-expected-relationships.json b/cucumber-tests/src/test/resources/expected-files/TRI-1001-expected-relationships.json new file mode 100644 index 0000000000..7418a9cf49 --- /dev/null +++ b/cucumber-tests/src/test/resources/expected-files/TRI-1001-expected-relationships.json @@ -0,0 +1,2851 @@ +{ + "relationships" : [ { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4c018d89-3131-424e-a03a-ca8dc6a8ee70" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9f5ef069-9610-4716-a04a-ea11a8887bf4" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:3aa4f9be-f7f6-4d19-a3c5-80d41f3cc190" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a8e8fff3-0dda-4888-9b10-80b6f8451f96" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:38ba6282-ffef-4f42-9036-b985b9312292" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:00dfccf7-31f1-4586-9ec3-9d2feaefd264" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b430fe23-0185-42cf-aa93-d7208a5b38a1" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:7c7d95db-082c-4923-9e38-f861ca677636" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1cbb59e3-cf13-48ed-abff-2433e2ecf527" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a19077d9-04d2-4639-a8e9-847445159e54" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c6c4431b-68e3-4572-87ee-4c8451f9d4bf" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8cd51dc0-4f9e-4495-b3d2-52d3f8a4c069" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d6918e10-f387-4a78-8809-4a9074b4fef8" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:cddaf481-37a3-4f45-9d50-1103d9411b2d" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e287fd6d-855b-430d-9c76-d98bd7fef372" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:896f4b52-b523-4393-b986-f43a1b5d1129" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:48bdb11a-9aba-4135-898f-2d8891805cec" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a184fd68-4227-435e-bd16-8a1685352541" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:db0aa2e8-d116-498f-80f4-e7f7c12570f3" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:0216d71a-bc4d-4209-8a68-15f5512babe6" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:284d5abc-90a1-4837-928e-7179ffe8f394" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8a3c5b15-f61a-445a-921a-3aa9853e4844" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e50f5928-61fe-406f-a50d-fbc06f502658" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8478dc83-2687-470a-ace0-f0333e56053d" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:69a7ccc4-d688-471f-b1cd-92e6f977e78a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:92fcfb2a-746f-4901-b72c-87bca62fa772" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a8fbe1d2-2efe-477b-9b44-54d25700e1bd" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:0c0ca596-a8d5-4949-9a50-73f7800b8a53" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1e94aba7-4b6b-4f6c-80ed-9dfe49f885ad" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d4966314-65cd-40f4-a6b9-39382772e0aa" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:fe01c2f4-9bf7-40b0-bb4b-096e7f13cc44" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:08bad170-5377-4d41-bb78-f4e8736dc9fa" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4f5270ae-3245-4657-aadc-485f98447d74" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6deb8a17-dcf0-4cd4-b6b4-77873c98de7d" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5b6c099b-43c9-4fdd-9812-3c94b2d595e9" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:db5b3f0d-0ac8-4453-91d6-84efeef74da8" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:7c7d95db-082c-4923-9e38-f861ca677636", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c2854f28-3a91-497a-a3eb-71a948cde07b" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:7c7d95db-082c-4923-9e38-f861ca677636", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:28d32759-3664-4b71-9f5a-3177e03ad1ff" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:7c7d95db-082c-4923-9e38-f861ca677636", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4ed87d34-9f06-4fc4-838a-eb9c8c4f1ea4" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:7c7d95db-082c-4923-9e38-f861ca677636", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6b478d19-2eb5-483c-a991-f181b3c721cd" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:7c7d95db-082c-4923-9e38-f861ca677636", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1b6fbf56-9143-493e-bbdb-82f3dfe184ae" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:7c7d95db-082c-4923-9e38-f861ca677636", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8af9b198-ce18-4357-9889-70a13095be28" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c2854f28-3a91-497a-a3eb-71a948cde07b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a607d208-293e-4fff-89d9-be2561628312" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c2854f28-3a91-497a-a3eb-71a948cde07b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:b98d303a-869a-4b7e-a986-74cb45f1eeb9" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c2854f28-3a91-497a-a3eb-71a948cde07b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c2854f28-3a91-497a-a3eb-71a948cde07b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:45cf870b-182a-4acc-83ab-0283921241f8" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c2854f28-3a91-497a-a3eb-71a948cde07b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ee4e09d4-4296-468e-8c52-b1b0656a0803" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c2854f28-3a91-497a-a3eb-71a948cde07b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4fd7cfd9-61fa-4672-94f9-4abe6e16837f" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c2854f28-3a91-497a-a3eb-71a948cde07b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ae58a335-5565-4b25-aba1-8c7841b600ef" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c2854f28-3a91-497a-a3eb-71a948cde07b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e9aab8e4-f759-4c4a-9b88-7a9dce44965b" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c2854f28-3a91-497a-a3eb-71a948cde07b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:14d11a44-cacd-4522-aa34-868c856a68d1" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c2854f28-3a91-497a-a3eb-71a948cde07b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:43f77102-3ff9-4cc4-9464-10d68afc01c0" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c2854f28-3a91-497a-a3eb-71a948cde07b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:11fb7f95-e87c-47e8-8c2f-ed8df7216037" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:a607d208-293e-4fff-89d9-be2561628312", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:b98d303a-869a-4b7e-a986-74cb45f1eeb9", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:45cf870b-182a-4acc-83ab-0283921241f8", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:ee4e09d4-4296-468e-8c52-b1b0656a0803", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:4fd7cfd9-61fa-4672-94f9-4abe6e16837f", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:ae58a335-5565-4b25-aba1-8c7841b600ef", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:e9aab8e4-f759-4c4a-9b88-7a9dce44965b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:14d11a44-cacd-4522-aa34-868c856a68d1", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:43f77102-3ff9-4cc4-9464-10d68afc01c0", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:11fb7f95-e87c-47e8-8c2f-ed8df7216037", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:28d32759-3664-4b71-9f5a-3177e03ad1ff", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:274e9424-adbf-4d4f-ad42-5e3d7b1549c8" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:28d32759-3664-4b71-9f5a-3177e03ad1ff", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1e90b99e-6fff-494d-9991-1fe3f8f2d727" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:28d32759-3664-4b71-9f5a-3177e03ad1ff", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:28d32759-3664-4b71-9f5a-3177e03ad1ff", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:cd247d6b-b9cf-4933-bf0f-91ca0c887552" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:28d32759-3664-4b71-9f5a-3177e03ad1ff", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d8363506-6aea-4561-a01c-c49dec24da07" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:28d32759-3664-4b71-9f5a-3177e03ad1ff", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:dde9ce52-0f6a-46f5-afda-d65ad75a9900" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:28d32759-3664-4b71-9f5a-3177e03ad1ff", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:661d1718-4317-4f87-9bd1-a407a2b96811" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:28d32759-3664-4b71-9f5a-3177e03ad1ff", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:f513c589-d244-4a0c-a009-442474914c78" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:28d32759-3664-4b71-9f5a-3177e03ad1ff", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:0422720e-5ca4-4e9d-b9dc-c3ca691cb4e4" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:28d32759-3664-4b71-9f5a-3177e03ad1ff", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ffd99ef5-68cb-47f7-a507-dbf0fe100ac2" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:28d32759-3664-4b71-9f5a-3177e03ad1ff", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:33be1ce4-d827-4d5b-8800-7963b93c76d2" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:274e9424-adbf-4d4f-ad42-5e3d7b1549c8", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:1e90b99e-6fff-494d-9991-1fe3f8f2d727", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:cd247d6b-b9cf-4933-bf0f-91ca0c887552", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d8363506-6aea-4561-a01c-c49dec24da07", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:dde9ce52-0f6a-46f5-afda-d65ad75a9900", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:661d1718-4317-4f87-9bd1-a407a2b96811", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:f513c589-d244-4a0c-a009-442474914c78", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:0422720e-5ca4-4e9d-b9dc-c3ca691cb4e4", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:ffd99ef5-68cb-47f7-a507-dbf0fe100ac2", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:33be1ce4-d827-4d5b-8800-7963b93c76d2", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:4ed87d34-9f06-4fc4-838a-eb9c8c4f1ea4", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:5b0b7f07-def5-4f03-9e75-d5439e115f97" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:4ed87d34-9f06-4fc4-838a-eb9c8c4f1ea4", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:4ed87d34-9f06-4fc4-838a-eb9c8c4f1ea4", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9c800f8b-cd20-4c4b-a1f7-68cb2bf0320f" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:4ed87d34-9f06-4fc4-838a-eb9c8c4f1ea4", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1e463b87-76c1-4568-90f0-62174d1e00a3" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:4ed87d34-9f06-4fc4-838a-eb9c8c4f1ea4", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:624a143c-4ac0-406d-8031-a477eb72f1f2" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:4ed87d34-9f06-4fc4-838a-eb9c8c4f1ea4", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:6f639931-156d-4663-8eef-fc1d2a31b110" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:4ed87d34-9f06-4fc4-838a-eb9c8c4f1ea4", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:14004fe8-fb1c-497f-9cc0-3f9af3817e57" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:4ed87d34-9f06-4fc4-838a-eb9c8c4f1ea4", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:c4c3be55-e3bd-461a-a4e2-e7003ba2581b" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:4ed87d34-9f06-4fc4-838a-eb9c8c4f1ea4", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a9e24bc8-c8fc-4375-a835-d8335b8557b2" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:4ed87d34-9f06-4fc4-838a-eb9c8c4f1ea4", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:2bbd7bb2-d0d1-4a76-9970-1e0cd2f8961a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:4ed87d34-9f06-4fc4-838a-eb9c8c4f1ea4", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:d08f0d73-f037-4d62-b307-5deda98d9770" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:5b0b7f07-def5-4f03-9e75-d5439e115f97", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:9c800f8b-cd20-4c4b-a1f7-68cb2bf0320f", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:1e463b87-76c1-4568-90f0-62174d1e00a3", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:624a143c-4ac0-406d-8031-a477eb72f1f2", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:6f639931-156d-4663-8eef-fc1d2a31b110", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:14004fe8-fb1c-497f-9cc0-3f9af3817e57", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:c4c3be55-e3bd-461a-a4e2-e7003ba2581b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:a9e24bc8-c8fc-4375-a835-d8335b8557b2", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:2bbd7bb2-d0d1-4a76-9970-1e0cd2f8961a", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d08f0d73-f037-4d62-b307-5deda98d9770", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:6b478d19-2eb5-483c-a991-f181b3c721cd", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:7ea507db-4e0a-4b62-890f-106ca92b727b" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:6b478d19-2eb5-483c-a991-f181b3c721cd", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a77f62b4-f1c6-41e7-886f-5cf9cc288c31" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:6b478d19-2eb5-483c-a991-f181b3c721cd", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:dc0c1026-2f3f-41d5-89ef-40fc59bd24ec" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:6b478d19-2eb5-483c-a991-f181b3c721cd", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:90049947-0437-4fa7-a446-cf6084c47084" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:6b478d19-2eb5-483c-a991-f181b3c721cd", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:2f484c80-d8d3-4ae8-9c5b-77e87c42ebad" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:6b478d19-2eb5-483c-a991-f181b3c721cd", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:45c30fd7-0d5a-4859-843f-1ef71abe1680" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:6b478d19-2eb5-483c-a991-f181b3c721cd", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8f195f0a-7180-4691-ba08-c47ec53f5e44" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:6b478d19-2eb5-483c-a991-f181b3c721cd", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ecb22ed2-976e-4474-aa30-6c6ae875b926" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:6b478d19-2eb5-483c-a991-f181b3c721cd", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:77116408-17aa-4ed5-94ac-6547ada2e287" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:6b478d19-2eb5-483c-a991-f181b3c721cd", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:873c2294-673c-4b27-a69e-4e4df5725646" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:6b478d19-2eb5-483c-a991-f181b3c721cd", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:81c28982-bcd8-40a6-a3f2-dc579e3ea97d" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:7ea507db-4e0a-4b62-890f-106ca92b727b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:a77f62b4-f1c6-41e7-886f-5cf9cc288c31", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:dc0c1026-2f3f-41d5-89ef-40fc59bd24ec", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:90049947-0437-4fa7-a446-cf6084c47084", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:2f484c80-d8d3-4ae8-9c5b-77e87c42ebad", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:45c30fd7-0d5a-4859-843f-1ef71abe1680", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:8f195f0a-7180-4691-ba08-c47ec53f5e44", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:77116408-17aa-4ed5-94ac-6547ada2e287", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:873c2294-673c-4b27-a69e-4e4df5725646", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:81c28982-bcd8-40a6-a3f2-dc579e3ea97d", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:1b6fbf56-9143-493e-bbdb-82f3dfe184ae", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:963445f3-f215-4051-850c-424f82a7bf8f" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:1b6fbf56-9143-493e-bbdb-82f3dfe184ae", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ddcbcfcd-5639-4d7b-97d4-75df9c15ef21" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:1b6fbf56-9143-493e-bbdb-82f3dfe184ae", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:72b8352e-a158-43da-a3a3-7999f3d4fad4" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:1b6fbf56-9143-493e-bbdb-82f3dfe184ae", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:0910bacd-5b4f-44b7-b9e0-6d0388206512" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:1b6fbf56-9143-493e-bbdb-82f3dfe184ae", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:49e28918-7aec-48f2-8ac0-926e6de74954" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:1b6fbf56-9143-493e-bbdb-82f3dfe184ae", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:77e3570c-d2f7-4d62-ae28-c4d83f1afbf7" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:1b6fbf56-9143-493e-bbdb-82f3dfe184ae", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:031a0e40-e710-4b0b-857e-e2223d01a94d" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:1b6fbf56-9143-493e-bbdb-82f3dfe184ae", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:e2fc85dc-dc94-437d-96d2-b28f5631c3a5" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:1b6fbf56-9143-493e-bbdb-82f3dfe184ae", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:61964f0f-109d-48cc-b60c-8cff189da8cd" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:1b6fbf56-9143-493e-bbdb-82f3dfe184ae", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ecb22ed2-976e-4474-aa30-6c6ae875b926" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:1b6fbf56-9143-493e-bbdb-82f3dfe184ae", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:8aa9bf20-b876-47b0-80dd-fbaf4142e2af" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:963445f3-f215-4051-850c-424f82a7bf8f", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:ddcbcfcd-5639-4d7b-97d4-75df9c15ef21", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:72b8352e-a158-43da-a3a3-7999f3d4fad4", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:0910bacd-5b4f-44b7-b9e0-6d0388206512", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:49e28918-7aec-48f2-8ac0-926e6de74954", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:77e3570c-d2f7-4d62-ae28-c4d83f1afbf7", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:031a0e40-e710-4b0b-857e-e2223d01a94d", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:e2fc85dc-dc94-437d-96d2-b28f5631c3a5", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:61964f0f-109d-48cc-b60c-8cff189da8cd", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:8aa9bf20-b876-47b0-80dd-fbaf4142e2af", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:8af9b198-ce18-4357-9889-70a13095be28", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ce384d3b-c167-418b-b59b-f14f84951701" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:8af9b198-ce18-4357-9889-70a13095be28", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:bdf51b2b-5ec2-43b1-8eab-8b894545a223" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:8af9b198-ce18-4357-9889-70a13095be28", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:4c08cc9d-83c9-48f1-8136-d1dc1a88c39c" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:8af9b198-ce18-4357-9889-70a13095be28", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1ef5b70d-e316-40a7-b98e-cc833b39415a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:8af9b198-ce18-4357-9889-70a13095be28", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:acb0404f-c2ab-4cac-935f-32af32333494" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:8af9b198-ce18-4357-9889-70a13095be28", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a4fc1c18-54ff-4684-9708-438e551e256b" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:8af9b198-ce18-4357-9889-70a13095be28", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:77a6f125-39e9-4abd-98db-2701fc265428" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:8af9b198-ce18-4357-9889-70a13095be28", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.11, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ecb22ed2-976e-4474-aa30-6c6ae875b926" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:8af9b198-ce18-4357-9889-70a13095be28", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:9aa7c0f9-bd19-43e0-9624-c2d9ed150206" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:8af9b198-ce18-4357-9889-70a13095be28", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:65d1b9af-23ed-4da5-880a-de060221d166" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:8af9b198-ce18-4357-9889-70a13095be28", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:85bb221e-8944-4099-874a-4391d2dc7521" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:ce384d3b-c167-418b-b59b-f14f84951701", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:bdf51b2b-5ec2-43b1-8eab-8b894545a223", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:4c08cc9d-83c9-48f1-8136-d1dc1a88c39c", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:1ef5b70d-e316-40a7-b98e-cc833b39415a", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:acb0404f-c2ab-4cac-935f-32af32333494", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:a4fc1c18-54ff-4684-9708-438e551e256b", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:77a6f125-39e9-4abd-98db-2701fc265428", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:9aa7c0f9-bd19-43e0-9624-c2d9ed150206", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:65d1b9af-23ed-4da5-880a-de060221d166", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:85bb221e-8944-4099-874a-4391d2dc7521", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:1cbb59e3-cf13-48ed-abff-2433e2ecf527", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.3301, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:73e97f5c-ae16-4865-a8ad-e5db9f2a7602" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:1cbb59e3-cf13-48ed-abff-2433e2ecf527", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:74e1669c-d3a8-44e5-8455-c90738dae0ea" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:1cbb59e3-cf13-48ed-abff-2433e2ecf527", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.2001, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:595b0204-a66d-425e-b293-e08e482f7e57" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:74e1669c-d3a8-44e5-8455-c90738dae0ea", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:a6bd9b01-d370-4234-9863-e121e67c7c98" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:48bdb11a-9aba-4135-898f-2d8891805cec", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:2efa06cf-24cb-42e1-9685-2411c1769444" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:284d5abc-90a1-4837-928e-7179ffe8f394", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:709a924c-1815-4a2c-a034-9a1beb766bd9" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d4966314-65cd-40f4-a6b9-39382772e0aa", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 1.0, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:piece" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:41f5b4b5-4e56-479f-856c-d3c708f28445" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d4966314-65cd-40f4-a6b9-39382772e0aa", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.2341, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:db771676-1d3e-430c-8ebf-76879cb64722" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:d4966314-65cd-40f4-a6b9-39382772e0aa", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.2014, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:66088e30-d7a4-41cf-8172-51f53e5e8a60" + }, + "aspectType" : "AssemblyPartRelationship" + }, { + "catenaXId" : "urn:uuid:41f5b4b5-4e56-479f-856c-d3c708f28445", + "linkedItem" : { + "quantity" : { + "quantityNumber" : 0.1908, + "measurementUnit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:kilogram" + } + }, + "lifecycleContext" : "asBuilt", + "assembledOn" : "2022-02-03T14:48:54.709Z", + "lastModifiedOn" : "2022-02-03T14:48:54.709Z", + "childCatenaXId" : "urn:uuid:ce4df127-f242-44b9-ac08-7a72fd7cabe6" + }, + "aspectType" : "AssemblyPartRelationship" + } ] +} \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-1001-expected-submodels.json b/cucumber-tests/src/test/resources/expected-files/TRI-1001-expected-submodels.json new file mode 100644 index 0000000000..d156eac097 --- /dev/null +++ b/cucumber-tests/src/test/resources/expected-files/TRI-1001-expected-submodels.json @@ -0,0 +1,8271 @@ +{ + "submodels": [ + { + "identification": "dafaa56c-e78f-4640-ace4-a65310dedd03", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:fe01c2f4-9bf7-40b0-bb4b-096e7f13cc44" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:8478dc83-2687-470a-ace0-f0333e56053d" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:3aa4f9be-f7f6-4d19-a3c5-80d41f3cc190" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:8cd51dc0-4f9e-4495-b3d2-52d3f8a4c069" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:48bdb11a-9aba-4135-898f-2d8891805cec" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:284d5abc-90a1-4837-928e-7179ffe8f394" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:08bad170-5377-4d41-bb78-f4e8736dc9fa" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:6deb8a17-dcf0-4cd4-b6b4-77873c98de7d" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:b430fe23-0185-42cf-aa93-d7208a5b38a1" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1e94aba7-4b6b-4f6c-80ed-9dfe49f885ad" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:a184fd68-4227-435e-bd16-8a1685352541" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:e287fd6d-855b-430d-9c76-d98bd7fef372" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:8a3c5b15-f61a-445a-921a-3aa9853e4844" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:c6c4431b-68e3-4572-87ee-4c8451f9d4bf" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:4c018d89-3131-424e-a03a-ca8dc6a8ee70" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:69a7ccc4-d688-471f-b1cd-92e6f977e78a" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:0216d71a-bc4d-4209-8a68-15f5512babe6" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:92fcfb2a-746f-4901-b72c-87bca62fa772" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:9f5ef069-9610-4716-a04a-ea11a8887bf4" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:e50f5928-61fe-406f-a50d-fbc06f502658" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:4f5270ae-3245-4657-aadc-485f98447d74" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:896f4b52-b523-4393-b986-f43a1b5d1129" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:5b6c099b-43c9-4fdd-9812-3c94b2d595e9" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:0c0ca596-a8d5-4949-9a50-73f7800b8a53" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:a8fbe1d2-2efe-477b-9b44-54d25700e1bd" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:cddaf481-37a3-4f45-9d50-1103d9411b2d" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:00dfccf7-31f1-4586-9ec3-9d2feaefd264" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:d6918e10-f387-4a78-8809-4a9074b4fef8" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:db5b3f0d-0ac8-4453-91d6-84efeef74da8" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:a8e8fff3-0dda-4888-9b10-80b6f8451f96" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:db0aa2e8-d116-498f-80f4-e7f7c12570f3" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:38ba6282-ffef-4f42-9036-b985b9312292" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:d4966314-65cd-40f4-a6b9-39382772e0aa" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1cbb59e3-cf13-48ed-abff-2433e2ecf527" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:7c7d95db-082c-4923-9e38-f861ca677636" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:a19077d9-04d2-4639-a8e9-847445159e54" + } + ] + } + }, + { + "identification": "e43c239c-9c54-49f2-a760-b0b0e297900a", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "KM-45", + "key": "manufacturerPartId" + }, + { + "value": "OMCXWCTCKZCFQAJRY", + "key": "partInstanceId" + }, + { + "value": "OMCXWCTCKZCFQAJRY", + "key": "van" + } + ], + "manufacturingInformation": { + "date": "2016-04-19T13:34:07.000Z", + "country": "DEU" + }, + "catenaXId": "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "partTypeInformation": { + "manufacturerPartId": "KM-45", + "classification": "product", + "nameAtManufacturer": "Vehicle Hybrid" + } + } + }, + { + "identification": "5c1dce61-25fd-4e6c-98c3-b8cb5c94faa6", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "65529521-37", + "key": "manufacturerPartId" + }, + { + "value": "NO-620250196359099790582042", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:4c018d89-3131-424e-a03a-ca8dc6a8ee70", + "partTypeInformation": { + "manufacturerPartId": "65529521-37", + "customerPartId": "65529521-37", + "classification": "component", + "nameAtManufacturer": "Exterior mirror left", + "nameAtCustomer": "Exterior mirror left" + } + } + }, + { + "identification": "142c9c14-fe99-4b35-9384-5aac4ff50a5a", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "77795937-13", + "key": "manufacturerPartId" + }, + { + "value": "NO-880044786202700274711398", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:9f5ef069-9610-4716-a04a-ea11a8887bf4", + "partTypeInformation": { + "manufacturerPartId": "77795937-13", + "customerPartId": "77795937-13", + "classification": "component", + "nameAtManufacturer": "Steering wheel", + "nameAtCustomer": "Steering wheel" + } + } + }, + { + "identification": "296ff869-139b-4293-9966-24c1af0b7a61", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "67034319-44", + "key": "manufacturerPartId" + }, + { + "value": "NO-724872613818943514928573", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:3aa4f9be-f7f6-4d19-a3c5-80d41f3cc190", + "partTypeInformation": { + "manufacturerPartId": "67034319-44", + "customerPartId": "67034319-44", + "classification": "component", + "nameAtManufacturer": "Turbocharger", + "nameAtCustomer": "Turbocharger" + } + } + }, + { + "identification": "6c17dd37-c67c-4d03-bf66-9bc7de2efb41", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "00871379-44", + "key": "manufacturerPartId" + }, + { + "value": "NO-579807933434299323297171", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:a8e8fff3-0dda-4888-9b10-80b6f8451f96", + "partTypeInformation": { + "manufacturerPartId": "00871379-44", + "customerPartId": "00871379-44", + "classification": "component", + "nameAtManufacturer": "Chassis", + "nameAtCustomer": "Chassis" + } + } + }, + { + "identification": "9e036ffc-c5fe-46a5-ba69-bb61e4a8ef7a", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "45863316-60", + "key": "manufacturerPartId" + }, + { + "value": "NO-352355571864205714881770", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:38ba6282-ffef-4f42-9036-b985b9312292", + "partTypeInformation": { + "manufacturerPartId": "45863316-60", + "customerPartId": "45863316-60", + "classification": "component", + "nameAtManufacturer": "Tires", + "nameAtCustomer": "Tires" + } + } + }, + { + "identification": "9e48f1b3-ddb3-498e-b6e0-77c5a032d302", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "78744126-74", + "key": "manufacturerPartId" + }, + { + "value": "NO-482466830021164503982990", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:00dfccf7-31f1-4586-9ec3-9d2feaefd264", + "partTypeInformation": { + "manufacturerPartId": "78744126-74", + "customerPartId": "78744126-74", + "classification": "component", + "nameAtManufacturer": "Taillight front", + "nameAtCustomer": "Taillight front" + } + } + }, + { + "identification": "aab76f7d-07c8-4c7d-bce5-c0b07432ae36", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "94421589-82", + "key": "manufacturerPartId" + }, + { + "value": "NO-378706333249569836809373", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:b430fe23-0185-42cf-aa93-d7208a5b38a1", + "partTypeInformation": { + "manufacturerPartId": "94421589-82", + "customerPartId": "94421589-82", + "classification": "component", + "nameAtManufacturer": "Engine hood", + "nameAtCustomer": "Engine hood" + } + } + }, + { + "identification": "37d891cb-b4b0-4b0e-8999-186dad711753", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:7c7d95db-082c-4923-9e38-f861ca677636", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:6b478d19-2eb5-483c-a991-f181b3c721cd" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:28d32759-3664-4b71-9f5a-3177e03ad1ff" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:8af9b198-ce18-4357-9889-70a13095be28" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1b6fbf56-9143-493e-bbdb-82f3dfe184ae" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:c2854f28-3a91-497a-a3eb-71a948cde07b" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:4ed87d34-9f06-4fc4-838a-eb9c8c4f1ea4" + } + ] + } + }, + { + "identification": "ec4ba393-c01f-4aa5-b52d-35e6628cbf26", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "38049661-08", + "key": "manufacturerPartId" + }, + { + "value": "NO-305688790765584490689008", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:7c7d95db-082c-4923-9e38-f861ca677636", + "partTypeInformation": { + "manufacturerPartId": "38049661-08", + "customerPartId": "38049661-08", + "classification": "component", + "nameAtManufacturer": "Battery", + "nameAtCustomer": "Battery" + } + } + }, + { + "identification": "862410bf-daf1-46d1-8f24-f2c5e8bfa833", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:c2854f28-3a91-497a-a3eb-71a948cde07b", + "childParts": [ + { + "quantity": { + "quantityNumber": 0.11, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:ae58a335-5565-4b25-aba1-8c7841b600ef" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:11fb7f95-e87c-47e8-8c2f-ed8df7216037" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:e9aab8e4-f759-4c4a-9b88-7a9dce44965b" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:45cf870b-182a-4acc-83ab-0283921241f8" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:ee4e09d4-4296-468e-8c52-b1b0656a0803" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:14d11a44-cacd-4522-aa34-868c856a68d1" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:a607d208-293e-4fff-89d9-be2561628312" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:b98d303a-869a-4b7e-a986-74cb45f1eeb9" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:43f77102-3ff9-4cc4-9464-10d68afc01c0" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:4fd7cfd9-61fa-4672-94f9-4abe6e16837f" + } + ] + } + }, + { + "identification": "7eb933a0-4644-450b-9cc6-49b2b2352fb3", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "8840837-48", + "key": "manufacturerPartId" + }, + { + "value": "NO-802245360353776066670510", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:c2854f28-3a91-497a-a3eb-71a948cde07b", + "partTypeInformation": { + "manufacturerPartId": "8840838-04", + "customerPartId": "8840838-04", + "classification": "component", + "nameAtManufacturer": "HV MODUL", + "nameAtCustomer": "HV MODUL" + } + } + }, + { + "identification": "96494cf3-9fe7-4dc5-8084-dcc01a764fcd", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:a607d208-293e-4fff-89d9-be2561628312", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "c592398f-6ca1-43a3-b8ab-dc0bbf1c30da", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-652260957704636752792630", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:a607d208-293e-4fff-89d9-be2561628312", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "86cf8b81-2845-4458-9c0e-963d51fef59e", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2020-09-12T01:18:52.036Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-17T16:06:30.037Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "c3ecaa90-e27e-4d1b-a82d-db2ff86d8e90", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:b98d303a-869a-4b7e-a986-74cb45f1eeb9", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "cdfd8070-530b-46d0-81dd-e688b4eff96d", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-189460667900299893326230", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:b98d303a-869a-4b7e-a986-74cb45f1eeb9", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "8a65d917-feab-4e53-9a27-cb3c090c7a68", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2017-08-08T05:48:59.062Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-16T11:53:35.062Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "bdd8435e-f6a0-4fc3-938a-a5bfe1b87c9b", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + } + }, + { + "identification": "ce186b3f-8793-43e0-bdaf-26b3d32c0efb", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:45cf870b-182a-4acc-83ab-0283921241f8", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "f85986ba-c940-4ec3-b11a-4ef69b169a74", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-990436166138728131433819", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:45cf870b-182a-4acc-83ab-0283921241f8", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "b92cbacc-ffed-47fd-8197-82b611178825", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2016-07-27T02:49:56.957Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-06T15:58:02.957Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "c095f6de-176a-47be-953b-d065321dbafe", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:ee4e09d4-4296-468e-8c52-b1b0656a0803", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "dbe4d129-cba9-4976-baea-f64a5d9eea69", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-379114184221508414612153", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:ee4e09d4-4296-468e-8c52-b1b0656a0803", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "42c64048-b052-4cf9-862b-66b0efc9974c", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2021-06-01T15:56:43.982Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-12T22:10:46.983Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "3f30a709-6e8d-45f7-8909-b21a0c140c07", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:4fd7cfd9-61fa-4672-94f9-4abe6e16837f", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "475853cb-28b7-4988-a197-5e584a327c31", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-438060310486196548438246", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:4fd7cfd9-61fa-4672-94f9-4abe6e16837f", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "3803601e-73e6-460c-b781-21d72a222f69", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2014-02-04T22:03:51.115Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-20T09:52:40.115Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "14ee24ee-3887-4b07-afaa-ce8d29fcc61b", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:ae58a335-5565-4b25-aba1-8c7841b600ef", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "400e9af2-6df3-4a89-bfb0-210e0b65b81f", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-008139387621939442566870", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:ae58a335-5565-4b25-aba1-8c7841b600ef", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "7d1d0359-99c0-4f29-8801-123629a8f2dc", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2016-08-31T04:28:08.869Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-29T02:46:31.869Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "8cfdd96e-ab35-4730-aafd-d2a972cf48ce", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:e9aab8e4-f759-4c4a-9b88-7a9dce44965b", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "4a13882a-55bd-40a1-844a-04cfa7c7b70a", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-583725931002743713392913", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:e9aab8e4-f759-4c4a-9b88-7a9dce44965b", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "461ce4f7-18e3-4546-b4b6-893059b0f919", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2015-03-19T03:17:49.932Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-16T16:30:26.932Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "6ae8b49b-5734-40cb-a11a-22b3a6f45c2a", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:14d11a44-cacd-4522-aa34-868c856a68d1", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "5d7bb938-0c35-4b96-abf5-2beb954439b0", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-425024879694382291320043", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:14d11a44-cacd-4522-aa34-868c856a68d1", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "94432258-b7f0-4a52-873e-7e5fbefe9b95", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2015-04-30T14:19:07.008Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-04T00:58:50.008Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "69cdea6b-4630-4eb4-bb32-8d825086d6dc", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:43f77102-3ff9-4cc4-9464-10d68afc01c0", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "b6aa2cdc-e5e3-4794-afd8-ff148666eaec", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-116235858211170096777996", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:43f77102-3ff9-4cc4-9464-10d68afc01c0", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "c7093cc9-04d9-44ed-b0da-7ab2a455116a", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2021-06-30T02:47:07.090Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-30T06:04:27.090Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "402df296-8299-450d-9209-5516a0df7698", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:11fb7f95-e87c-47e8-8c2f-ed8df7216037", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "f3982675-7b6f-4ee2-b342-52b1a5665270", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-103418436461251861777997", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:11fb7f95-e87c-47e8-8c2f-ed8df7216037", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "b9f0adee-3a3f-474a-a6f8-630de0722e8f", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2015-04-15T17:20:50.907Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-01T18:32:16.907Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "2e2938f4-d858-430b-a2e0-587697ba2521", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:28d32759-3664-4b71-9f5a-3177e03ad1ff", + "childParts": [ + { + "quantity": { + "quantityNumber": 0.11, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:274e9424-adbf-4d4f-ad42-5e3d7b1549c8" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1e90b99e-6fff-494d-9991-1fe3f8f2d727" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:661d1718-4317-4f87-9bd1-a407a2b96811" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:cd247d6b-b9cf-4933-bf0f-91ca0c887552" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:0422720e-5ca4-4e9d-b9dc-c3ca691cb4e4" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:ffd99ef5-68cb-47f7-a507-dbf0fe100ac2" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:d8363506-6aea-4561-a01c-c49dec24da07" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:f513c589-d244-4a0c-a009-442474914c78" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:dde9ce52-0f6a-46f5-afda-d65ad75a9900" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:33be1ce4-d827-4d5b-8800-7963b93c76d2" + } + ] + } + }, + { + "identification": "02bf5721-f985-4103-83ee-a3dae299a637", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "8840837-48", + "key": "manufacturerPartId" + }, + { + "value": "NO-265256556981418472957677", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:28d32759-3664-4b71-9f5a-3177e03ad1ff", + "partTypeInformation": { + "manufacturerPartId": "8840838-04", + "customerPartId": "8840838-04", + "classification": "component", + "nameAtManufacturer": "HV MODUL", + "nameAtCustomer": "HV MODUL" + } + } + }, + { + "identification": "03b96c06-3387-4f63-b025-064b9ab3bb1e", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:274e9424-adbf-4d4f-ad42-5e3d7b1549c8", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "7be49737-1001-4640-b271-0899509c4f54", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-712336851392732278751552", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:274e9424-adbf-4d4f-ad42-5e3d7b1549c8", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "670cd914-7788-4e6a-9a41-a24c7432b0e1", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2015-02-02T18:12:30.978Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-15T15:29:33.979Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "708ef013-f52a-4d79-8603-a586fa42c5c2", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:1e90b99e-6fff-494d-9991-1fe3f8f2d727", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "dbc12382-6ae2-487c-8b3a-547f57d36016", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-786749955765204199037795", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:1e90b99e-6fff-494d-9991-1fe3f8f2d727", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "55aba142-06ae-48bf-8aa3-3ee209e12070", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2022-01-14T02:43:54.006Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-06T06:45:41.006Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "26893da6-4578-4b17-a4a6-c08f9e9466ef", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + } + }, + { + "identification": "f02fef86-f728-4b9e-9ff6-19dccc69937c", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:cd247d6b-b9cf-4933-bf0f-91ca0c887552", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "6cc8e621-a393-4520-bea2-a863f9bbeac3", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-173859633449706971182123", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:cd247d6b-b9cf-4933-bf0f-91ca0c887552", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "005ab189-bc35-458e-8fc5-14b26428802d", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2020-09-07T00:25:10.059Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-01T23:49:53.059Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "7016ad15-b8f9-4347-ac81-4fbe26bc3537", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:d8363506-6aea-4561-a01c-c49dec24da07", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "f1cdbb3d-2a26-481c-9b73-fe10c376e46c", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-886282172581928043107692", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:d8363506-6aea-4561-a01c-c49dec24da07", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "45691421-066d-41b5-9b01-82705649d4d4", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2019-08-13T07:58:43.139Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-17T05:03:29.139Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "1ee2b792-d0e3-4e25-bf05-752eea643617", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:dde9ce52-0f6a-46f5-afda-d65ad75a9900", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "8eda9ec8-c1a9-4a37-bb7e-5c25d480e0a2", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-853945560478572734015711", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:dde9ce52-0f6a-46f5-afda-d65ad75a9900", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "1b60bac0-ac6b-4e85-90cf-e5695d4a9473", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2022-06-13T13:27:37.190Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-30T19:59:19.190Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "78e75120-4b1d-4cd8-9033-052f36a5ef4c", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:661d1718-4317-4f87-9bd1-a407a2b96811", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "01bb7ebb-3037-472d-88e4-fd661461b188", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-812429697425718722541481", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:661d1718-4317-4f87-9bd1-a407a2b96811", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "1280d2b1-0ce7-4f0b-b4f0-ab1961b1d7be", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2021-03-13T14:37:39.033Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-12T15:14:23.033Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "a8b13d0c-cb05-4889-a0f5-2b74e5343c1e", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:f513c589-d244-4a0c-a009-442474914c78", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "6914f472-5ce2-442f-a08b-a3249733dbbb", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-216403406241329417095579", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:f513c589-d244-4a0c-a009-442474914c78", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "0bb0816e-7fb5-4eb5-9ecd-e32fea1e42c6", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2019-06-21T05:15:30.163Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-13T23:08:38.163Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "05787050-9416-49d2-a23e-5e5ff6fe9ac5", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:0422720e-5ca4-4e9d-b9dc-c3ca691cb4e4", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "650e7678-d214-4120-9aab-41143865c764", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-351608394202350856415986", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:0422720e-5ca4-4e9d-b9dc-c3ca691cb4e4", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "7db3156c-4e45-45cc-af8a-7d5d6a666576", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2016-11-05T02:47:24.089Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-06T17:19:49.089Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "4d6d7f28-c43a-42f3-af99-66a7c3dbd7a1", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:ffd99ef5-68cb-47f7-a507-dbf0fe100ac2", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "070a489d-e99c-4083-89aa-bb1d7f88140e", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-766985197650900131884646", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:ffd99ef5-68cb-47f7-a507-dbf0fe100ac2", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "2c42f726-604b-4a6f-b067-f9b5470e6c9a", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2020-08-08T02:48:21.113Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-26T12:59:59.113Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "4dc29c6e-47ab-48e1-90fe-7f8954a60be4", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:33be1ce4-d827-4d5b-8800-7963b93c76d2", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "f51f8b95-9efd-4c08-bf49-00917e20a9e0", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-016345661597267762290457", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:33be1ce4-d827-4d5b-8800-7963b93c76d2", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "aaaf4495-de0a-4243-98a2-1872afcf690a", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2016-08-08T17:58:16.216Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-29T22:43:02.216Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "0bc4f6d7-1f6a-40f5-8c95-3a136c6ca727", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:4ed87d34-9f06-4fc4-838a-eb9c8c4f1ea4", + "childParts": [ + { + "quantity": { + "quantityNumber": 0.11, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:c4c3be55-e3bd-461a-a4e2-e7003ba2581b" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:a9e24bc8-c8fc-4375-a835-d8335b8557b2" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:9c800f8b-cd20-4c4b-a1f7-68cb2bf0320f" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:2bbd7bb2-d0d1-4a76-9970-1e0cd2f8961a" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:6f639931-156d-4663-8eef-fc1d2a31b110" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:5b0b7f07-def5-4f03-9e75-d5439e115f97" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:624a143c-4ac0-406d-8031-a477eb72f1f2" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:d08f0d73-f037-4d62-b307-5deda98d9770" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1e463b87-76c1-4568-90f0-62174d1e00a3" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:14004fe8-fb1c-497f-9cc0-3f9af3817e57" + } + ] + } + }, + { + "identification": "a84bab4c-cfb9-49ff-b63e-5ea339d9a618", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "8840837-48", + "key": "manufacturerPartId" + }, + { + "value": "NO-926990480631046192738997", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:4ed87d34-9f06-4fc4-838a-eb9c8c4f1ea4", + "partTypeInformation": { + "manufacturerPartId": "8840838-04", + "customerPartId": "8840838-04", + "classification": "component", + "nameAtManufacturer": "HV MODUL", + "nameAtCustomer": "HV MODUL" + } + } + }, + { + "identification": "84fa0a33-8870-4505-9e41-7af7ddf7ee55", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:5b0b7f07-def5-4f03-9e75-d5439e115f97", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "c6246368-6423-4830-b724-c2185c966db5", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-013093852702254996799915", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:5b0b7f07-def5-4f03-9e75-d5439e115f97", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "d257f2b1-327f-4792-b88c-ce2b4a6eda17", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2013-08-28T20:47:32.293Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-05T07:41:13.293Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "c660e286-ff73-461f-a3e7-29da2ae5bfe1", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:6b2045eb-08e8-451a-9f97-4e8a6fd4e08e" + } + }, + { + "identification": "ad534eec-b3d5-44b5-8eb6-39bda8cebc78", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:9c800f8b-cd20-4c4b-a1f7-68cb2bf0320f", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "c94fc18a-8c79-4db5-91cf-e99b4e5220ef", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-627529865094192219307719", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:9c800f8b-cd20-4c4b-a1f7-68cb2bf0320f", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "e2f2e19e-0837-4152-bf4e-2e3f05a12ac0", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2015-05-19T20:48:46.218Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-17T19:31:39.218Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "599541ec-f0ef-45e1-b351-0130697c194e", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:1e463b87-76c1-4568-90f0-62174d1e00a3", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "b2e1c463-badf-4fd3-87fb-0dc9638d86d1", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-115212821359947799376187", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:1e463b87-76c1-4568-90f0-62174d1e00a3", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "8ccdb25e-2f22-4e2a-8330-145ecf308c8e", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2020-02-22T12:23:01.368Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-08T21:36:31.368Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "29704cd5-d9b7-4bf4-9972-96cd1c1cc3b7", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:624a143c-4ac0-406d-8031-a477eb72f1f2", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "649537e7-7237-43ed-a7d4-5772b8b341c4", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-220141209868260288525494", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:624a143c-4ac0-406d-8031-a477eb72f1f2", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "4741d2a8-aafc-4867-acb2-9a502e3ca337", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2022-02-21T19:05:20.319Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-27T08:36:58.319Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "2c8c9525-6126-4978-926a-295fb576ea6a", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:6f639931-156d-4663-8eef-fc1d2a31b110", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "2df54db0-b4b0-4de0-8874-736735617628", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-167590031991975500514113", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:6f639931-156d-4663-8eef-fc1d2a31b110", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "ae864460-5b6c-41fa-bec5-b4cd71366cc7", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2021-01-23T11:54:51.268Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-03T10:33:03.268Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "5273ffc1-6aee-4146-bbab-7fa5ddc4af63", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:14004fe8-fb1c-497f-9cc0-3f9af3817e57", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "2d8f8bcf-8bc7-4396-887a-4ffcada3ccd2", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-277860574533879998963848", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:14004fe8-fb1c-497f-9cc0-3f9af3817e57", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "d9ad1a45-8206-4695-90eb-4e5c28d420dd", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2013-09-14T08:58:40.393Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-31T22:15:23.394Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "93b02dbd-12b1-4175-a1d0-5589e4a451d4", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:c4c3be55-e3bd-461a-a4e2-e7003ba2581b", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "81f69d08-e887-4bca-a53a-ff659aa87f1e", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-561621992303427463903698", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:c4c3be55-e3bd-461a-a4e2-e7003ba2581b", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "4e5eafd4-c2c3-402f-8598-6705a50bcba0", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2019-10-16T10:16:30.168Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-30T21:11:43.168Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "69e13260-2dd4-415e-85d8-a1d3f9e21cf7", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:a9e24bc8-c8fc-4375-a835-d8335b8557b2", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "6014a239-95b9-4157-a1eb-295ec07814cc", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-408675166530775197487592", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:a9e24bc8-c8fc-4375-a835-d8335b8557b2", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "43fa6364-52cc-4939-8f52-07afdfdd60b8", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2019-09-24T02:52:46.192Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-21T05:11:19.193Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "b7a21cb6-c278-4b13-a94c-22a5a2f85a20", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:2bbd7bb2-d0d1-4a76-9970-1e0cd2f8961a", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "a259ac48-f531-4b5d-90fb-bd8a4fcb4468", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-408794758239777456844171", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:2bbd7bb2-d0d1-4a76-9970-1e0cd2f8961a", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "2fe85b77-9c16-4a62-906e-2db6fb6a7711", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2015-08-22T03:17:38.243Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-25T18:53:57.243Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "afcbc5ba-1854-4523-a3d3-af91bdb60afd", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:d08f0d73-f037-4d62-b307-5deda98d9770", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "826dd81c-5c95-4043-a8b2-33c74084ea33", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-949559215509514901873797", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:d08f0d73-f037-4d62-b307-5deda98d9770", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "c3212a6b-b867-4e43-9013-876a0db12d2c", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2018-11-28T02:59:27.343Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-22T01:19:00.343Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "3ebbd8a2-c4a9-4d7f-8036-6fd8d72c486a", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:6b478d19-2eb5-483c-a991-f181b3c721cd", + "childParts": [ + { + "quantity": { + "quantityNumber": 0.11, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:ecb22ed2-976e-4474-aa30-6c6ae875b926" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:7ea507db-4e0a-4b62-890f-106ca92b727b" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:2f484c80-d8d3-4ae8-9c5b-77e87c42ebad" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:873c2294-673c-4b27-a69e-4e4df5725646" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:81c28982-bcd8-40a6-a3f2-dc579e3ea97d" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:dc0c1026-2f3f-41d5-89ef-40fc59bd24ec" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:77116408-17aa-4ed5-94ac-6547ada2e287" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:90049947-0437-4fa7-a446-cf6084c47084" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:8f195f0a-7180-4691-ba08-c47ec53f5e44" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:45c30fd7-0d5a-4859-843f-1ef71abe1680" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:a77f62b4-f1c6-41e7-886f-5cf9cc288c31" + } + ] + } + }, + { + "identification": "c1d8b5a4-2040-46e5-a23c-8e4fbbdd4b38", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "8840837-48", + "key": "manufacturerPartId" + }, + { + "value": "NO-109683851467855228995854", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:6b478d19-2eb5-483c-a991-f181b3c721cd", + "partTypeInformation": { + "manufacturerPartId": "8840838-04", + "customerPartId": "8840838-04", + "classification": "component", + "nameAtManufacturer": "HV MODUL", + "nameAtCustomer": "HV MODUL" + } + } + }, + { + "identification": "b8eb5130-6523-4d21-969a-d84ca2b0f9cd", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:7ea507db-4e0a-4b62-890f-106ca92b727b", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "4ebd54ef-80e6-47e6-a086-f8be35791b01", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-072430169951699439525699", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:7ea507db-4e0a-4b62-890f-106ca92b727b", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "202d99b5-4055-4155-9553-3ec4b8b7571b", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2015-07-02T17:17:33.681Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-07T12:27:54.681Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "883136e5-579c-440e-8299-b782dd2d3b22", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:a77f62b4-f1c6-41e7-886f-5cf9cc288c31", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "5f621d0b-6a81-450c-92cc-a78a5ebda9c0", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-153719842543411611417012", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:a77f62b4-f1c6-41e7-886f-5cf9cc288c31", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "d5b9ce66-6c3a-4d44-a6df-b29e8107ffe1", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2013-08-03T00:57:11.924Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-20T17:58:35.924Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "2487d12f-3cb9-43ca-91c7-9a8cdee4aae7", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:dc0c1026-2f3f-41d5-89ef-40fc59bd24ec", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "1a5fa05f-f9d4-46fe-907a-8a925021a181", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-012332368860750523654245", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:dc0c1026-2f3f-41d5-89ef-40fc59bd24ec", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "11d83bdc-c1ff-41b1-8fbe-076a3fd8196a", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2018-04-01T03:58:38.786Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-14T00:52:03.786Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "e13e4781-68f1-4ed6-9d83-3029323dc634", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:90049947-0437-4fa7-a446-cf6084c47084", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "b8293386-1fd6-4ea3-acf9-a9ad0f8cc795", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-243195617084325617093660", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:90049947-0437-4fa7-a446-cf6084c47084", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "4b19b9d9-a9eb-4b0d-b2d3-6a437d0a4109", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2019-07-14T18:42:41.838Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-10T19:25:53.838Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "2a077a40-5179-4903-8219-44211d6245c5", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:2f484c80-d8d3-4ae8-9c5b-77e87c42ebad", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "a20c8f81-6b66-4560-9e24-a4a979dab421", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-886703089339791782499021", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:2f484c80-d8d3-4ae8-9c5b-77e87c42ebad", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "c8f0f674-1b97-434a-9943-d411a16e2fde", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2022-02-06T23:07:19.707Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-04T17:10:14.707Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "f3d9782d-efc5-4049-9e1d-f690ccfb6078", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:45c30fd7-0d5a-4859-843f-1ef71abe1680", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "e9715d3f-8f98-424a-94b1-ed094607484c", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-080064278991777049297447", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:45c30fd7-0d5a-4859-843f-1ef71abe1680", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "895b1916-da0c-4526-8bad-12ad7e7cf322", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2013-06-14T14:33:12.898Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-23T17:44:10.898Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "fcbf0646-d70d-4b18-8461-367a277fdbf9", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:8f195f0a-7180-4691-ba08-c47ec53f5e44", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "85ab4c8b-1956-49d6-b121-e998f5994a70", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-502162696533937025548706", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:8f195f0a-7180-4691-ba08-c47ec53f5e44", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "b49b7289-8742-48f7-bdf1-1c94dba7e38d", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2020-04-17T14:13:15.869Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-12T00:37:45.869Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "7f1b1810-f39f-4eb3-98c8-1c00aa268c0f", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:ecb22ed2-976e-4474-aa30-6c6ae875b926" + } + }, + { + "identification": "40dc88ed-e66a-4860-bbcf-9bb1eef7c6be", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:77116408-17aa-4ed5-94ac-6547ada2e287", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "67af8f02-7a19-4c81-9b3c-d33d10047149", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-335714311936491719109793", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:77116408-17aa-4ed5-94ac-6547ada2e287", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "d223c48e-4ef4-4455-94bd-edb9e61a6a09", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2014-08-29T22:58:50.812Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-11T06:43:00.812Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "997be698-e369-44b0-913d-13bb1120099d", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:873c2294-673c-4b27-a69e-4e4df5725646", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "4b439231-801d-4a72-b63b-755541fccbfc", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-466457308863882067933823", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:873c2294-673c-4b27-a69e-4e4df5725646", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "2694f9fd-7ef1-4459-9386-f7be8e57994d", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2016-01-26T08:20:42.732Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-23T09:22:41.732Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "d1c678de-ed0f-4d25-b38a-007ecd07f135", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:81c28982-bcd8-40a6-a3f2-dc579e3ea97d", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "a774c7bf-17e0-468a-9c05-056e1565a415", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-003361977388105918370843", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:81c28982-bcd8-40a6-a3f2-dc579e3ea97d", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "08911bb9-4deb-465a-bf2d-fc9b3efe2cac", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2016-02-20T07:51:01.759Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-14T10:11:10.759Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "10164a56-194b-428c-9435-f94f14fd5a11", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:1b6fbf56-9143-493e-bbdb-82f3dfe184ae", + "childParts": [ + { + "quantity": { + "quantityNumber": 0.11, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:ecb22ed2-976e-4474-aa30-6c6ae875b926" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:77e3570c-d2f7-4d62-ae28-c4d83f1afbf7" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:963445f3-f215-4051-850c-424f82a7bf8f" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:ddcbcfcd-5639-4d7b-97d4-75df9c15ef21" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:8aa9bf20-b876-47b0-80dd-fbaf4142e2af" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:0910bacd-5b4f-44b7-b9e0-6d0388206512" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:e2fc85dc-dc94-437d-96d2-b28f5631c3a5" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:61964f0f-109d-48cc-b60c-8cff189da8cd" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:031a0e40-e710-4b0b-857e-e2223d01a94d" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:49e28918-7aec-48f2-8ac0-926e6de74954" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:72b8352e-a158-43da-a3a3-7999f3d4fad4" + } + ] + } + }, + { + "identification": "bf2291bd-2d8c-42a6-82da-0b3005185daf", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "8840837-48", + "key": "manufacturerPartId" + }, + { + "value": "NO-442579696768217820577901", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:1b6fbf56-9143-493e-bbdb-82f3dfe184ae", + "partTypeInformation": { + "manufacturerPartId": "8840838-04", + "customerPartId": "8840838-04", + "classification": "component", + "nameAtManufacturer": "HV MODUL", + "nameAtCustomer": "HV MODUL" + } + } + }, + { + "identification": "4acac40f-09fa-4c4e-b2cd-e126138af545", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:963445f3-f215-4051-850c-424f82a7bf8f", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "1755f70c-8271-4547-9423-4cccd3649b7a", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-768771634297035373822780", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:963445f3-f215-4051-850c-424f82a7bf8f", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "7097c0b6-8d8c-472f-bdb9-e48d9f2670b4", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2015-10-06T13:55:33.583Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-08T13:03:43.583Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "0f174c0b-47f6-4ad7-a609-61917873b505", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:ddcbcfcd-5639-4d7b-97d4-75df9c15ef21", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "101cef93-daec-4c4f-bb9b-957202cb63c7", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-801448066545686264477362", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:ddcbcfcd-5639-4d7b-97d4-75df9c15ef21", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "353167e0-07a1-4d80-887d-7a7412a9a04c", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2021-06-26T23:28:00.610Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-03T01:16:40.610Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "ede456ce-ecd6-4d9b-97e3-bca44eacdadc", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:72b8352e-a158-43da-a3a3-7999f3d4fad4", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "d4d739a6-8ee5-47b5-9ba4-a4075454c63c", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-261319088390195919140378", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:72b8352e-a158-43da-a3a3-7999f3d4fad4", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "0504403b-723b-4047-95a1-333abffde432", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2021-03-24T22:47:37.796Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-17T04:41:54.796Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "0ac16d99-c115-44ba-be38-13dc90a4d923", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:0910bacd-5b4f-44b7-b9e0-6d0388206512", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "8ed819ee-c120-4df0-a036-e2cb0c0da596", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-022601365254770012243099", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:0910bacd-5b4f-44b7-b9e0-6d0388206512", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "c95e5ed5-6638-4467-9e2f-7d6b01df7a53", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2013-05-10T20:40:53.663Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-06T10:28:55.663Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "20a37875-941a-40bb-a4a5-7cae4869b096", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:49e28918-7aec-48f2-8ac0-926e6de74954", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "18005f3b-f3b0-4adf-973d-9bc117d28250", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-736599321071836281611217", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:49e28918-7aec-48f2-8ac0-926e6de74954", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "54577a0f-40a3-4128-ba22-5931c3b44008", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2022-09-11T11:36:43.770Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-17T01:19:59.770Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "b53ae6fa-5ecd-4a04-a70a-de68715faae1", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:77e3570c-d2f7-4d62-ae28-c4d83f1afbf7", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "1fadb78d-ccd7-4aed-9756-26e18356339e", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-444505507462983392851428", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:77e3570c-d2f7-4d62-ae28-c4d83f1afbf7", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "68d2f833-7cae-4178-8c57-d6b5d9525408", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2013-04-04T15:49:44.556Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-23T01:54:54.557Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "fd70c099-8442-4e57-a10a-8cc56515fb4b", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:031a0e40-e710-4b0b-857e-e2223d01a94d", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "59d4362c-4c35-4505-886e-862d92cf3c3d", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-679221680720951320063158", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:031a0e40-e710-4b0b-857e-e2223d01a94d", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "90fedb28-5709-4ef6-8fdf-5347de62d12a", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2016-03-06T12:01:08.741Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-03T23:21:40.741Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "9657916d-9287-4d4c-8910-a117528efe7b", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:e2fc85dc-dc94-437d-96d2-b28f5631c3a5", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "8e42c8b7-d4fc-450b-aa7d-9a53b2c47a72", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-119644031703265050153810", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:e2fc85dc-dc94-437d-96d2-b28f5631c3a5", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "caacf132-620b-4e78-af1e-9f6df2a96ee3", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2022-11-04T21:07:22.688Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-24T12:05:15.688Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "47f4fc08-a5de-4efe-a834-25b8b22d966b", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:61964f0f-109d-48cc-b60c-8cff189da8cd", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "9909223e-39fe-4762-888c-96063d33c7ab", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-507994872113557356986139", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:61964f0f-109d-48cc-b60c-8cff189da8cd", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "0ae9846e-ff3b-473d-afd2-96dee4869236", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2017-10-16T17:30:56.713Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-05T22:02:46.713Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "43b75f20-f5fa-4cd5-a10b-4b6f034610e7", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:ecb22ed2-976e-4474-aa30-6c6ae875b926" + } + }, + { + "identification": "10fff471-ad2f-4548-994f-5d2e01c22b8b", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:8aa9bf20-b876-47b0-80dd-fbaf4142e2af", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "5e19b768-7d73-405f-9328-e982c3ed1eac", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-594526801524247561374803", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:8aa9bf20-b876-47b0-80dd-fbaf4142e2af", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "179eab3d-1c6d-4bde-a9e4-13e353ad1249", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2014-04-18T19:18:20.638Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-26T03:30:17.638Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "73541a42-4b1e-40d6-ab51-dca28d53ade8", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:8af9b198-ce18-4357-9889-70a13095be28", + "childParts": [ + { + "quantity": { + "quantityNumber": 0.11, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:ecb22ed2-976e-4474-aa30-6c6ae875b926" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:acb0404f-c2ab-4cac-935f-32af32333494" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:85bb221e-8944-4099-874a-4391d2dc7521" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:ce384d3b-c167-418b-b59b-f14f84951701" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:a4fc1c18-54ff-4684-9708-438e551e256b" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:bdf51b2b-5ec2-43b1-8eab-8b894545a223" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:4c08cc9d-83c9-48f1-8136-d1dc1a88c39c" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:77a6f125-39e9-4abd-98db-2701fc265428" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:9aa7c0f9-bd19-43e0-9624-c2d9ed150206" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1ef5b70d-e316-40a7-b98e-cc833b39415a" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:65d1b9af-23ed-4da5-880a-de060221d166" + } + ] + } + }, + { + "identification": "95eb7a16-63c3-4868-844f-6bc963e3299c", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "8840837-48", + "key": "manufacturerPartId" + }, + { + "value": "NO-525519791225073225242542", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:8af9b198-ce18-4357-9889-70a13095be28", + "partTypeInformation": { + "manufacturerPartId": "8840838-04", + "customerPartId": "8840838-04", + "classification": "component", + "nameAtManufacturer": "HV MODUL", + "nameAtCustomer": "HV MODUL" + } + } + }, + { + "identification": "17d0560c-d152-41bf-a26c-f7f6cbdb03c0", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:ce384d3b-c167-418b-b59b-f14f84951701", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "30fcac6e-6c14-407d-afd7-d88860dd054a", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-472546089389151200037064", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:ce384d3b-c167-418b-b59b-f14f84951701", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "1316afd0-e79f-45f3-b857-3005f7c81d3e", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2018-07-31T03:44:49.320Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-15T07:49:44.320Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "9bae524d-84a8-427c-88d5-eb7719671436", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:bdf51b2b-5ec2-43b1-8eab-8b894545a223", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "225b8dfa-cdfa-49de-9161-e1c6e331718a", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-602010265278343327969890", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:bdf51b2b-5ec2-43b1-8eab-8b894545a223", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "88878d28-2061-4ebe-8311-04cef86a917e", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2019-06-13T13:04:42.370Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-08T17:33:40.370Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "4c17789f-bebd-4b3c-91db-36b7231499ad", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:4c08cc9d-83c9-48f1-8136-d1dc1a88c39c", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "f299d99d-950a-41e7-b99b-e292d8841b2b", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-375099628310030557427977", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:4c08cc9d-83c9-48f1-8136-d1dc1a88c39c", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "ffc6e0f5-0985-4f75-ba68-d022a4efd1ca", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2021-01-05T17:28:28.396Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-17T15:05:21.396Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "2db09ff7-6beb-47d9-b36a-a57b75dc553a", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:1ef5b70d-e316-40a7-b98e-cc833b39415a", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "e69c5c7d-2b2b-4e52-8a4b-1d4e2e20ee0c", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-204542671848665188209585", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:1ef5b70d-e316-40a7-b98e-cc833b39415a", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "7a116efe-1a90-4e45-a804-c839cf563636", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2014-11-26T17:28:37.477Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-22T14:36:12.477Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "905a51d8-50b6-45a1-a5ef-228ed147cb41", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:acb0404f-c2ab-4cac-935f-32af32333494", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "ccc00539-9e8e-4a76-9678-08df3a2732b2", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-515685444372433913661143", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:acb0404f-c2ab-4cac-935f-32af32333494", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "dc3825a0-1055-45b4-8c73-e3f156e4cd3d", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2020-02-04T14:09:02.269Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-18T01:28:27.269Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "dd133153-9c18-442f-a190-3ad3f4da6887", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:a4fc1c18-54ff-4684-9708-438e551e256b", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "7e8b6a53-f17e-475f-8247-4351d6c2fb7b", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-065345563506500647210116", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:a4fc1c18-54ff-4684-9708-438e551e256b", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "c2a54391-4f7a-433e-9070-f9aa0ea75824", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2014-09-13T02:22:00.344Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-08T18:03:36.344Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "39a23443-f761-4459-8e08-60c8111977c5", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:77a6f125-39e9-4abd-98db-2701fc265428", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:503ffb76-b64b-49eb-be03-8b7c81813b8a" + } + ] + } + }, + { + "identification": "11c456eb-6b2b-4da1-8a01-960ad6af3ed9", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-533479239863557655845916", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:77a6f125-39e9-4abd-98db-2701fc265428", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "594d5b00-0609-49e9-8ca5-ef04f3e444e9", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2019-05-24T01:06:15.425Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-06T10:36:32.425Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "b6573bfe-ffde-4573-8056-9bb822ddd65a", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:ecb22ed2-976e-4474-aa30-6c6ae875b926" + } + }, + { + "identification": "2291f405-03eb-4121-8bc0-6895d423c382", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:9aa7c0f9-bd19-43e0-9624-c2d9ed150206", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "4a5a615b-c72b-4b22-bfce-72348972f04c", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-379734597703008046057989", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:9aa7c0f9-bd19-43e0-9624-c2d9ed150206", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "ec7051ba-9b78-4bea-aed1-b2280eedf0ba", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2019-08-08T17:17:54.452Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-11-15T06:27:55.452Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "a213df84-740d-41c5-9bf4-bf2fb8a43526", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:65d1b9af-23ed-4da5-880a-de060221d166", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "580540f7-58ce-492e-99c4-1b461e5c474b", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-124608847685995419777382", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:65d1b9af-23ed-4da5-880a-de060221d166", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "356939a7-c800-403e-8c3a-5bd1839b28b0", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2022-07-06T02:10:48.504Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-21T16:33:11.504Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "e2bf347a-8662-4981-938b-b1c9ab1767b0", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:85bb221e-8944-4099-874a-4391d2dc7521", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:1a226439-84e1-4b92-9666-01d537347467" + } + ] + } + }, + { + "identification": "75f438af-621e-4b8f-b83c-184c27237dd6", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000004WK", + "key": "manufacturerId" + }, + { + "value": "8840838-04", + "key": "manufacturerPartId" + }, + { + "value": "NO-222257228085681751371907", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:85bb221e-8944-4099-874a-4391d2dc7521", + "partTypeInformation": { + "manufacturerPartId": "8840374-09", + "customerPartId": "8840374-09", + "classification": "component", + "nameAtManufacturer": "ZB ZELLE", + "nameAtCustomer": "ZB ZELLE" + } + } + }, + { + "identification": "f9e76cb3-6178-49bb-a5f9-d88e2b13cce4", + "aspectType": "urn:bamm:io.catenax.battery.product_description:1.0.1#ProductDescription", + "payload": { + "minimalStateOfHealth": { + "minimalStateOfHealthValue": "90.0", + "specificatorId": "OEM", + "minimalStateOfHealthPhase": "as specified by OEM" + }, + "currentStateOfHealth": [ + { + "currentStateOfHealthTimestamp": "2022-05-22T00:13:19.294Z", + "currentStateOfHealthPhase": "as specified by OEM", + "currentStateOfHealthValue": "105" + }, + { + "currentStateOfHealthTimestamp": "2022-10-21T07:32:52.294Z", + "currentStateOfHealthPhase": "as recieved by dismantling", + "currentStateOfHealthValue": "95" + } + ], + "performanceIndicator": { + "electricCapacityMin": "0.8", + "electricCapacityMax": "0.88" + }, + "type": "HVB" + } + }, + { + "identification": "7af25729-46bb-4d8d-bbd7-ab753cbedaeb", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:1cbb59e3-cf13-48ed-abff-2433e2ecf527", + "childParts": [ + { + "quantity": { + "quantityNumber": "0.3301", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:73e97f5c-ae16-4865-a8ad-e5db9f2a7602" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:74e1669c-d3a8-44e5-8455-c90738dae0ea" + }, + { + "quantity": { + "quantityNumber": "0.2001", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:595b0204-a66d-425e-b293-e08e482f7e57" + } + ] + } + }, + { + "identification": "b3ee558a-2c81-4475-961a-e5e1c0a3713f", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000006V6", + "key": "manufacturerId" + }, + { + "value": "92730F5-03", + "key": "manufacturerPartId" + }, + { + "value": "NO-969915952013871672708942", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:1cbb59e3-cf13-48ed-abff-2433e2ecf527", + "partTypeInformation": { + "manufacturerPartId": "92730F5-03", + "customerPartId": "92730F5-03", + "classification": "component", + "nameAtManufacturer": "ECU", + "nameAtCustomer": "ECU" + } + } + }, + { + "identification": "59ded422-6761-403d-9541-c6c3c4ae58f6", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:74e1669c-d3a8-44e5-8455-c90738dae0ea", + "childParts": [ + { + "quantity": { + "quantityNumber": "0.1908", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:a6bd9b01-d370-4234-9863-e121e67c7c98" + } + ] + } + }, + { + "identification": "84e2df52-8fba-4e0f-8893-5422325ece7e", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000008TS", + "key": "manufacturerId" + }, + { + "value": "27680C1-76", + "key": "manufacturerPartId" + }, + { + "value": "NO-969229093254977726275426", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:74e1669c-d3a8-44e5-8455-c90738dae0ea", + "partTypeInformation": { + "manufacturerPartId": "27680C1-76", + "customerPartId": "27680C1-76", + "classification": "component", + "nameAtManufacturer": "Sensor", + "nameAtCustomer": "Sensor" + } + } + }, + { + "identification": "ea0b1965-ed94-4ec5-b4bd-e6673ee4460b", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000003X9", + "key": "manufacturerId" + }, + { + "value": "36004L5-50", + "key": "manufacturerPartId" + }, + { + "value": "NO-811498171208095740927735", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:595b0204-a66d-425e-b293-e08e482f7e57", + "partTypeInformation": { + "manufacturerPartId": "36004L5-50", + "customerPartId": "36004L5-50", + "classification": "component", + "nameAtManufacturer": "Engineering Plastics", + "nameAtCustomer": "Engineering Plastics" + } + } + }, + { + "identification": "b0bd9778-5aa5-4f0d-8f38-1f3bf4a3be5b", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000BRP", + "key": "manufacturerId" + }, + { + "value": "73849201-61", + "key": "manufacturerPartId" + }, + { + "value": "NO-853927424176770342296232", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:a19077d9-04d2-4639-a8e9-847445159e54", + "partTypeInformation": { + "manufacturerPartId": "43847201-25", + "customerPartId": "43847201-25", + "classification": "component", + "nameAtManufacturer": "DXM Part I", + "nameAtCustomer": "DXM Part I" + } + } + }, + { + "identification": "690aabcf-7c1b-4461-bbec-cf5c882c3b5d", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "22768257-25", + "key": "manufacturerPartId" + }, + { + "value": "NO-991007712188657576147276", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:c6c4431b-68e3-4572-87ee-4c8451f9d4bf", + "partTypeInformation": { + "manufacturerPartId": "22768257-25", + "customerPartId": "22768257-25", + "classification": "component", + "nameAtManufacturer": "Bumper rear", + "nameAtCustomer": "Bumper rear" + } + } + }, + { + "identification": "a5502cb6-f43d-4c66-b90f-c4b35bdd5947", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "73849201-61", + "key": "manufacturerPartId" + }, + { + "value": "NO-216467311769662834469962", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:8cd51dc0-4f9e-4495-b3d2-52d3f8a4c069", + "partTypeInformation": { + "manufacturerPartId": "73849201-61", + "customerPartId": "73849201-61", + "classification": "component", + "nameAtManufacturer": "Catalysator", + "nameAtCustomer": "Catalysator" + } + } + }, + { + "identification": "1862d3a7-f1b6-4b33-bd0b-d7644a9d9763", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "12093297-03", + "key": "manufacturerPartId" + }, + { + "value": "NO-664572053165755185574893", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:d6918e10-f387-4a78-8809-4a9074b4fef8", + "partTypeInformation": { + "manufacturerPartId": "12093297-03", + "customerPartId": "12093297-03", + "classification": "component", + "nameAtManufacturer": "Axle part front", + "nameAtCustomer": "Axle part front" + } + } + }, + { + "identification": "5946e2f5-8be1-4d04-845a-dde6956963a5", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "61184040-23", + "key": "manufacturerPartId" + }, + { + "value": "NO-883331028032582973785786", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:cddaf481-37a3-4f45-9d50-1103d9411b2d", + "partTypeInformation": { + "manufacturerPartId": "61184040-23", + "customerPartId": "61184040-23", + "classification": "component", + "nameAtManufacturer": "Taillight rear", + "nameAtCustomer": "Taillight rear" + } + } + }, + { + "identification": "542f05d3-abe5-4989-8a00-bff062c5c78d", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "36643162-35", + "key": "manufacturerPartId" + }, + { + "value": "NO-127838318543405015348864", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:e287fd6d-855b-430d-9c76-d98bd7fef372", + "partTypeInformation": { + "manufacturerPartId": "36643162-35", + "customerPartId": "36643162-35", + "classification": "component", + "nameAtManufacturer": "Fender right", + "nameAtCustomer": "Fender right" + } + } + }, + { + "identification": "da5937dd-4c60-4d0a-914f-b6215d57246d", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "45415162-57", + "key": "manufacturerPartId" + }, + { + "value": "NO-966682199448115856410963", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:896f4b52-b523-4393-b986-f43a1b5d1129", + "partTypeInformation": { + "manufacturerPartId": "45415162-57", + "customerPartId": "45415162-57", + "classification": "component", + "nameAtManufacturer": "Led headlight", + "nameAtCustomer": "Led headlight" + } + } + }, + { + "identification": "b535458d-4060-4e86-8e76-9c5b1de067d3", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:48bdb11a-9aba-4135-898f-2d8891805cec", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:2efa06cf-24cb-42e1-9685-2411c1769444" + } + ] + } + }, + { + "identification": "2fcccf28-3496-4442-8295-eca5d785d797", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000CR0", + "key": "manufacturerId" + }, + { + "value": "22782277-50", + "key": "manufacturerPartId" + }, + { + "value": "NO-888652037469073400577529", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:48bdb11a-9aba-4135-898f-2d8891805cec", + "partTypeInformation": { + "manufacturerPartId": "22782277-50", + "customerPartId": "22782277-50", + "classification": "component", + "nameAtManufacturer": "Door f-l", + "nameAtCustomer": "Door front-left" + } + } + }, + { + "identification": "b1c0d609-8b8f-4278-b92c-e7ec8b93df5c", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000007UH", + "key": "manufacturerId" + }, + { + "value": "95657762-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-907290402892188093588593", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:2efa06cf-24cb-42e1-9685-2411c1769444", + "partTypeInformation": { + "manufacturerPartId": "95657762-59", + "customerPartId": "95657762-59", + "classification": "component", + "nameAtManufacturer": "Door Key", + "nameAtCustomer": "Door Key" + } + } + }, + { + "identification": "e220af70-18de-4bf8-9232-3ce1e0995559", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "13769860-47", + "key": "manufacturerPartId" + }, + { + "value": "NO-380676100609152043060573", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:a184fd68-4227-435e-bd16-8a1685352541", + "partTypeInformation": { + "manufacturerPartId": "13769860-47", + "customerPartId": "13769860-47", + "classification": "component", + "nameAtManufacturer": "Fender left", + "nameAtCustomer": "Fender right" + } + } + }, + { + "identification": "f7700ab7-bd34-456e-ba85-cd21517781dc", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "08901347-87", + "key": "manufacturerPartId" + }, + { + "value": "NO-194441028601419634331631", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:db0aa2e8-d116-498f-80f4-e7f7c12570f3", + "partTypeInformation": { + "manufacturerPartId": "08901347-87", + "customerPartId": "08901347-87", + "classification": "component", + "nameAtManufacturer": "Rims", + "nameAtCustomer": "Rims" + } + } + }, + { + "identification": "eb20d957-6b35-4ad7-8afe-e573cebdaa33", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "09002013-68", + "key": "manufacturerPartId" + }, + { + "value": "NO-675515396916448619655726", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:0216d71a-bc4d-4209-8a68-15f5512babe6", + "partTypeInformation": { + "manufacturerPartId": "09002013-68", + "customerPartId": "09002013-68", + "classification": "component", + "nameAtManufacturer": "Trailer coupling", + "nameAtCustomer": "Tailer coupling" + } + } + }, + { + "identification": "a998a600-0578-4d1d-9276-ff15edf97531", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:284d5abc-90a1-4837-928e-7179ffe8f394", + "childParts": [ + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:709a924c-1815-4a2c-a034-9a1beb766bd9" + } + ] + } + }, + { + "identification": "039386b9-05bf-4714-811c-a053eb00bf05", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000CR0", + "key": "manufacturerId" + }, + { + "value": "95657362-64", + "key": "manufacturerPartId" + }, + { + "value": "NO-756994663794458469617894", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:284d5abc-90a1-4837-928e-7179ffe8f394", + "partTypeInformation": { + "manufacturerPartId": "33740332-54", + "customerPartId": "33740332-54", + "classification": "component", + "nameAtManufacturer": "Door f-r", + "nameAtCustomer": "Door front-right" + } + } + }, + { + "identification": "0cbeaf05-8747-4c94-a61d-d01bac50cba6", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000007UH", + "key": "manufacturerId" + }, + { + "value": "95657762-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-509618714148398112560223", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:709a924c-1815-4a2c-a034-9a1beb766bd9", + "partTypeInformation": { + "manufacturerPartId": "95657762-59", + "customerPartId": "95657762-59", + "classification": "component", + "nameAtManufacturer": "Door Key", + "nameAtCustomer": "Door Key" + } + } + }, + { + "identification": "959ff396-2cb3-427f-a1b2-8f99c8f85fcd", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "54165444-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-329765064698040219321872", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:8a3c5b15-f61a-445a-921a-3aa9853e4844", + "partTypeInformation": { + "manufacturerPartId": "54165444-59", + "customerPartId": "54165444-59", + "classification": "component", + "nameAtManufacturer": "Bumper front", + "nameAtCustomer": "Bumper front" + } + } + }, + { + "identification": "736dff8b-abb0-4ebb-ba18-8be95885634d", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "20125432-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-235409290779123760950851", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:e50f5928-61fe-406f-a50d-fbc06f502658", + "partTypeInformation": { + "manufacturerPartId": "20125432-59", + "customerPartId": "20125432-59", + "classification": "component", + "nameAtManufacturer": "Indicator left", + "nameAtCustomer": "Indicator left" + } + } + }, + { + "identification": "d256d2c2-7121-4f7c-8dcf-bfcba3cf7081", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "32494586-73", + "key": "manufacturerPartId" + }, + { + "value": "NO-981982019043859409898843", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:8478dc83-2687-470a-ace0-f0333e56053d", + "partTypeInformation": { + "manufacturerPartId": "32494586-73", + "customerPartId": "32494586-73", + "classification": "component", + "nameAtManufacturer": "Differential Gear", + "nameAtCustomer": "Differential Gear" + } + } + }, + { + "identification": "16b19119-db48-4c69-a2c7-179ea88c770d", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "58471477-24", + "key": "manufacturerPartId" + }, + { + "value": "NO-764017551536140137519279", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:69a7ccc4-d688-471f-b1cd-92e6f977e78a", + "partTypeInformation": { + "manufacturerPartId": "58471477-24", + "customerPartId": "58471477-24", + "classification": "component", + "nameAtManufacturer": "Exterior mirror right", + "nameAtCustomer": "Exterior mirror right" + } + } + }, + { + "identification": "1170dbd2-fba3-40fb-afb3-8a062337f27e", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "43501996-98", + "key": "manufacturerPartId" + }, + { + "value": "NO-982479782935684885998574", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:92fcfb2a-746f-4901-b72c-87bca62fa772", + "partTypeInformation": { + "manufacturerPartId": "43501996-98", + "customerPartId": "43501996-98", + "classification": "component", + "nameAtManufacturer": "Dashboard", + "nameAtCustomer": "Dashboard" + } + } + }, + { + "identification": "f4ed6f4e-11c9-47da-bad9-712a130c7a5d", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "57929013-09", + "key": "manufacturerPartId" + }, + { + "value": "NO-354241094970167180473356", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:a8fbe1d2-2efe-477b-9b44-54d25700e1bd", + "partTypeInformation": { + "manufacturerPartId": "57929013-09", + "customerPartId": "57929013-09", + "classification": "component", + "nameAtManufacturer": "AC compressor", + "nameAtCustomer": "Air conditioning compressor" + } + } + }, + { + "identification": "269de018-3c36-4647-8f4f-f0943370ee0f", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "81324139-23", + "key": "manufacturerPartId" + }, + { + "value": "NO-564126195977214135757876", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:0c0ca596-a8d5-4949-9a50-73f7800b8a53", + "partTypeInformation": { + "manufacturerPartId": "81324139-23", + "customerPartId": "81324139-23", + "classification": "component", + "nameAtManufacturer": "Alternator", + "nameAtCustomer": "Alternator" + } + } + }, + { + "identification": "4487631c-9678-4dde-b7e8-2b74d1efdb2b", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "85023955-75", + "key": "manufacturerPartId" + }, + { + "value": "NO-335595374808321180987791", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:1e94aba7-4b6b-4f6c-80ed-9dfe49f885ad", + "partTypeInformation": { + "manufacturerPartId": "85023955-75", + "customerPartId": "85023955-75", + "classification": "component", + "nameAtManufacturer": "Tailgate", + "nameAtCustomer": "Tailgate" + } + } + }, + { + "identification": "81d90e25-3a8c-4969-8380-b381ad3c9d12", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:d4966314-65cd-40f4-a6b9-39382772e0aa", + "childParts": [ + { + "quantity": { + "quantityNumber": "0.2014", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:66088e30-d7a4-41cf-8172-51f53e5e8a60" + }, + { + "quantity": { + "quantityNumber": 1, + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:piece" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:41f5b4b5-4e56-479f-856c-d3c708f28445" + }, + { + "quantity": { + "quantityNumber": "0.2341", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:db771676-1d3e-430c-8ebf-76879cb64722" + } + ] + } + }, + { + "identification": "7e405757-4bec-49b6-89f1-04f6d2171756", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000005VV", + "key": "manufacturerId" + }, + { + "value": "1O222E8-43", + "key": "manufacturerPartId" + }, + { + "value": "NO-557474963447881477742775", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:d4966314-65cd-40f4-a6b9-39382772e0aa", + "partTypeInformation": { + "manufacturerPartId": "1O222E8-43", + "customerPartId": "1O222E8-43", + "classification": "component", + "nameAtManufacturer": "Transmission", + "nameAtCustomer": "Transmission" + } + } + }, + { + "identification": "6825f164-dca0-40e7-8cc7-33208e9614db", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:41f5b4b5-4e56-479f-856c-d3c708f28445", + "childParts": [ + { + "quantity": { + "quantityNumber": "0.1908", + "measurementUnit": { + "datatypeURI": "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue": "unit:kilogram" + } + }, + "lifecycleContext": "AsBuilt", + "createdOn": "2022-02-03T14:48:54.709Z", + "lastModifiedOn": "2022-02-03T14:48:54.709Z", + "childCatenaXId": "urn:uuid:ce4df127-f242-44b9-ac08-7a72fd7cabe6" + } + ] + } + }, + { + "identification": "4e137655-ef0d-4da1-b647-d6cd84ed0d41", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL0000000008TS", + "key": "manufacturerId" + }, + { + "value": "50852C2-66", + "key": "manufacturerPartId" + }, + { + "value": "NO-476413919637750781250137", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:41f5b4b5-4e56-479f-856c-d3c708f28445", + "partTypeInformation": { + "manufacturerPartId": "50852C2-66", + "customerPartId": "50852C2-66", + "classification": "component", + "nameAtManufacturer": "Sensor", + "nameAtCustomer": "Sensor" + } + } + }, + { + "identification": "e8690c6c-b8dd-4c6b-8a57-e2d75e58287e", + "aspectType": "urn:bamm:io.catenax.assembly_part_relationship:1.1.1#AssemblyPartRelationship", + "payload": { + "catenaXId": "urn:uuid:db771676-1d3e-430c-8ebf-76879cb64722", + "childParts": [] + } + }, + { + "identification": "abb9665a-b12b-499a-8952-c9e8d2ec5253", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "10030939-59", + "key": "manufacturerPartId" + }, + { + "value": "NO-295227835768732244687544", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:fe01c2f4-9bf7-40b0-bb4b-096e7f13cc44", + "partTypeInformation": { + "manufacturerPartId": "10030939-59", + "customerPartId": "10030939-59", + "classification": "component", + "nameAtManufacturer": "Engine", + "nameAtCustomer": "Engine" + } + } + }, + { + "identification": "e6c5e1b2-18f7-40be-8a71-68c58b4e67fe", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "15635759-16", + "key": "manufacturerPartId" + }, + { + "value": "NO-492364947388439094329641", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:08bad170-5377-4d41-bb78-f4e8736dc9fa", + "partTypeInformation": { + "manufacturerPartId": "15635759-16", + "customerPartId": "15635759-16", + "classification": "component", + "nameAtManufacturer": "Door r-l", + "nameAtCustomer": "Door rear-left" + } + } + }, + { + "identification": "87cb7c26-96f9-4368-9c20-b8f4fbc89641", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "19073706-76", + "key": "manufacturerPartId" + }, + { + "value": "NO-559293264106565999219741", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:4f5270ae-3245-4657-aadc-485f98447d74", + "partTypeInformation": { + "manufacturerPartId": "19073706-76", + "customerPartId": "19073706-76", + "classification": "component", + "nameAtManufacturer": "Indicator right", + "nameAtCustomer": "Indicator right" + } + } + }, + { + "identification": "89990bdb-5bbe-45de-967c-d6bd03790481", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "28673126-98", + "key": "manufacturerPartId" + }, + { + "value": "NO-071240450640007634287794", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:6deb8a17-dcf0-4cd4-b6b4-77873c98de7d", + "partTypeInformation": { + "manufacturerPartId": "28673126-98", + "customerPartId": "28673126-98", + "classification": "component", + "nameAtManufacturer": "Door r-r", + "nameAtCustomer": "Door rear-right" + } + } + }, + { + "identification": "f3e23e93-5762-46a2-b1dd-3c621327522f", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "78141846-87", + "key": "manufacturerPartId" + }, + { + "value": "NO-062186947963213715675230", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:5b6c099b-43c9-4fdd-9812-3c94b2d595e9", + "partTypeInformation": { + "manufacturerPartId": "78141846-87", + "customerPartId": "78141846-87", + "classification": "component", + "nameAtManufacturer": "Starter motor", + "nameAtCustomer": "Starter motor" + } + } + }, + { + "identification": "eef95dbb-d50c-478c-a081-da673ff25b62", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL000000000EPM", + "key": "manufacturerId" + }, + { + "value": "88111709-49", + "key": "manufacturerPartId" + }, + { + "value": "NO-939265703452475072794106", + "key": "partInstanceId" + } + ], + "manufacturingInformation": { + "date": "2022-02-04T14:48:54", + "country": "DEU" + }, + "catenaXId": "urn:uuid:db5b3f0d-0ac8-4453-91d6-84efeef74da8", + "partTypeInformation": { + "manufacturerPartId": "88111709-49", + "customerPartId": "88111709-49", + "classification": "component", + "nameAtManufacturer": "Axle part rear", + "nameAtCustomer": "Axle part rear" + } + } + }, + { + "identification": "eef95dbb-d50c-478c-a081-da673ff25b62", + "aspectType": "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction", + "payload": { + "catenaXId": "urn:uuid:cda6add0-5ae7-4242-a33b-9cc3204930d0", + "dismantlerProperties": { + "expiryDate": "2022-07-11T08:38:46.743Z", + "dismantlerAuditorContact": { + "phone": "+49458404363", + "fax": "+497740070" + }, + "dismantlerContact": { + "phone": "+492795608", + "fax": "+49476895" + }, + "dismantlerAuditorAddress": { + "zip": "68161", + "country": "DEU", + "street": "Speyerer Straße", + "houseNumber": "45", + "name": "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "location": "Mannheim" + }, + "receiverAuditorAdress": { + "zip": "68161", + "country": "DEU", + "street": "Berliner Straße", + "houseNumber": "42", + "name": "VLhpfQGTMDYpsBZxvfBoeygjb", + "location": "Mannheim" + }, + "dismantlerAdress": { + "zip": "68165", + "country": "DEU", + "street": "Schubertstraße", + "houseNumber": "11", + "name": "JxkyvRnL", + "location": "Mannheim" + }, + "issueDate": "2022-07-11T08:38:46.743Z", + "isVehicleWithdrawnFromService": false, + "governmentAdress": { + "zip": "10719", + "country": "DEU", + "street": "Pariser Straße", + "houseNumber": "45", + "name": "RYtGKbgicZaHCBRQDSx", + "location": "Berlin" + } + }, + "serialNumber": "DIS1087432", + "companyNumber": "S30A00265", + "vehicleProperties": { + "licenseAbbreviation": "MA", + "isVehicleInformationComplete": false, + "licensePlate": "MA-UI123", + "identification": "WBAAY711X0KC28153", + "emptyWeight": 1.79, + "model": "Model A", + "brand": "OME", + "class": "01", + "firstRegistration": "19.12.2014" + }, + "returnPointProperties": { + "expiryDate": "2022-07-11T08:38:46.741Z", + "receiverAuditorContact": { + "phone": "+49004417570", + "fax": "+495516625649" + }, + "receiverContact": { + "phone": "+4912263422", + "fax": "+49288164270" + }, + "receiverAuditorAdress": { + "zip": "68161", + "country": "DEU", + "street": "Speyerer Straße", + "houseNumber": "45", + "name": "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location": "Mannheim" + }, + "issueDate": "2022-07-11T08:38:46.741Z", + "isVehicleWithdrawnFromService": true + }, + "vehicleOwnerProperties": { + "isVehicleOwnerInformationComplete": true, + "vehicleOwnerAddress": { + "zip": "68163", + "country": "DEU", + "street": "Rheinvillen Straße", + "houseNumber": "7", + "name": "eOMtThyhVNLWUZNRcBaQKxI", + "location": "Mannheim" + }, + "citizenship": "DEU" + }, + "dismantlingDate": "2022-07-11T08:38:46.739Z" + } + } + ] +} \ No newline at end of file From 347435017158485f1c2c9ab65daf070208e46677 Mon Sep 17 00:00:00 2001 From: Adam Bugajewski Date: Thu, 15 Dec 2022 12:07:25 +0100 Subject: [PATCH 21/62] fix(api):TRI-991 Existing jobs stored in old schema are blocking processing of new Job - skip and log warn when stored job cannot be parse from json to Job object --- .../irs/connector/job/PersistentJobStore.java | 16 +++++++++++----- .../connector/job/PersistentJobStoreTest.java | 16 ++++++++++++++++ 2 files changed, 27 insertions(+), 5 deletions(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/PersistentJobStore.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/PersistentJobStore.java index 487d06626e..878a42ca84 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/PersistentJobStore.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/PersistentJobStore.java @@ -32,6 +32,7 @@ import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.eclipse.tractusx.irs.component.enums.JobState; +import org.eclipse.tractusx.irs.exceptions.JsonParseException; import org.eclipse.tractusx.irs.persistence.BlobPersistence; import org.eclipse.tractusx.irs.persistence.BlobPersistenceException; import org.eclipse.tractusx.irs.services.MeterRegistryService; @@ -60,7 +61,7 @@ public class PersistentJobStore extends BaseJobStore { @Override protected Optional get(final String jobId) { try { - return blobStore.getBlob(toBlobId(jobId)).map(this::toJob); + return blobStore.getBlob(toBlobId(jobId)).flatMap(this::toJob); } catch (BlobPersistenceException e) { log.error("Error while trying to get job from blobstore", e); return Optional.empty(); @@ -71,7 +72,7 @@ protected Optional get(final String jobId) { protected Collection getAll() { try { final Collection allBlobs = blobStore.findBlobByPrefix(JOB_PREFIX); - return allBlobs.stream().map(this::toJob).collect(Collectors.toList()); + return allBlobs.stream().map(this::toJob).flatMap(Optional::stream).collect(Collectors.toList()); } catch (BlobPersistenceException e) { log.error("Cannot search for jobs in blobstore", e); return Collections.emptyList(); @@ -94,7 +95,7 @@ protected void put(final String jobId, final MultiTransferJob job) { @Override protected Optional remove(final String jobId) { try { - final Optional job = blobStore.getBlob(toBlobId(jobId)).map(this::toJob); + final Optional job = blobStore.getBlob(toBlobId(jobId)).flatMap(this::toJob); if (job.isPresent()) { final List ids = Stream.concat(job.get().getTransferProcessIds().stream(), @@ -110,8 +111,13 @@ protected Optional remove(final String jobId) { } } - private MultiTransferJob toJob(final byte[] blob) { - return json.fromString(new String(blob, StandardCharsets.UTF_8), MultiTransferJob.class); + private Optional toJob(final byte[] blob) { + try { + return Optional.of(json.fromString(new String(blob, StandardCharsets.UTF_8), MultiTransferJob.class)); + } catch (JsonParseException exception) { + log.warn("Stored Job could not be parsed to Job object."); + return Optional.empty(); + } } private byte[] toBlob(final MultiTransferJob job) { diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/PersistentJobStoreTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/PersistentJobStoreTest.java index b867f7990b..310ddcf33c 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/PersistentJobStoreTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/PersistentJobStoreTest.java @@ -32,7 +32,9 @@ import static org.mockito.Mockito.times; import static org.mockito.Mockito.verify; +import java.nio.charset.StandardCharsets; import java.time.ZonedDateTime; +import java.util.Collection; import java.util.List; import java.util.Optional; import java.util.UUID; @@ -537,4 +539,18 @@ void shouldRemoveJobAndExecuteDeleteMethodWithFoundCompletedTransferIds() throws verify(blobStoreSpy, times(1)).delete(anyString(), anyList()); } + @Test + void shouldGetAllCorrectJobEvenCorruptedBlobIsStored() throws BlobPersistenceException { + // Arrange + String wrongJson = "{\"key\": \"value\"}"; + blobStoreSpy.putBlob("job:123", wrongJson.getBytes(StandardCharsets.UTF_8)); + sut.create(job); + + // Act + Collection actual = sut.getAll(); + + // Assert + assertThat(actual).hasSize(1); + } + } \ No newline at end of file From 28d0287968a71e8a662e42bcce0e03dfa5532c92 Mon Sep 17 00:00:00 2001 From: Adam Bugajewski Date: Thu, 15 Dec 2022 13:43:02 +0100 Subject: [PATCH 22/62] fix(api):TRI-991 Existing jobs stored in old schema are blocking processing of new Job - change assertion to less strict --- .../tractusx/irs/connector/job/PersistentJobStoreTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/PersistentJobStoreTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/PersistentJobStoreTest.java index 310ddcf33c..708acfa764 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/PersistentJobStoreTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/PersistentJobStoreTest.java @@ -542,6 +542,7 @@ void shouldRemoveJobAndExecuteDeleteMethodWithFoundCompletedTransferIds() throws @Test void shouldGetAllCorrectJobEvenCorruptedBlobIsStored() throws BlobPersistenceException { // Arrange + String wrongJson = "{\"key\": \"value\"}"; blobStoreSpy.putBlob("job:123", wrongJson.getBytes(StandardCharsets.UTF_8)); sut.create(job); @@ -550,7 +551,7 @@ void shouldGetAllCorrectJobEvenCorruptedBlobIsStored() throws BlobPersistenceExc Collection actual = sut.getAll(); // Assert - assertThat(actual).hasSize(1); + assertThat(actual).isNotEmpty(); } } \ No newline at end of file From 86f7270cb8c4271475e459b689d609384e443c28 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Thu, 15 Dec 2022 14:02:22 +0100 Subject: [PATCH 23/62] feat(cucumber):[TRI-739] Add preconditions for environment properties --- cucumber-tests/pom.xml | 6 ++ .../cucumber/AuthenticationProperties.java | 4 +- .../irs/cucumber/E2ETestStepDefinitions.java | 61 +++++++++++-------- 3 files changed, 44 insertions(+), 27 deletions(-) diff --git a/cucumber-tests/pom.xml b/cucumber-tests/pom.xml index babf7069c6..65461a10f7 100644 --- a/cucumber-tests/pom.xml +++ b/cucumber-tests/pom.xml @@ -88,6 +88,12 @@ 4.2.0 test + + org.projectlombok + lombok + true + test + diff --git a/cucumber-tests/src/test/java/org/eclipse/tractusx/irs/cucumber/AuthenticationProperties.java b/cucumber-tests/src/test/java/org/eclipse/tractusx/irs/cucumber/AuthenticationProperties.java index 2c1651916c..154d86be58 100644 --- a/cucumber-tests/src/test/java/org/eclipse/tractusx/irs/cucumber/AuthenticationProperties.java +++ b/cucumber-tests/src/test/java/org/eclipse/tractusx/irs/cucumber/AuthenticationProperties.java @@ -28,8 +28,10 @@ import io.restassured.builder.RequestSpecBuilder; import io.restassured.specification.RequestSpecification; +import lombok.Builder; -/* package */ class AuthenticationProperties { +@Builder +/* package */ class AuthenticationProperties { private final String uri; private final String clientId; private final String clientSecret; diff --git a/cucumber-tests/src/test/java/org/eclipse/tractusx/irs/cucumber/E2ETestStepDefinitions.java b/cucumber-tests/src/test/java/org/eclipse/tractusx/irs/cucumber/E2ETestStepDefinitions.java index 0a6c491641..2b1535bf92 100644 --- a/cucumber-tests/src/test/java/org/eclipse/tractusx/irs/cucumber/E2ETestStepDefinitions.java +++ b/cucumber-tests/src/test/java/org/eclipse/tractusx/irs/cucumber/E2ETestStepDefinitions.java @@ -64,30 +64,39 @@ public class E2ETestStepDefinitions { private ObjectMapper objectMapper; private AuthenticationProperties authProperties; + private AuthenticationProperties.AuthenticationPropertiesBuilder authenticationPropertiesBuilder; + @Before public void setup() { registerJobBuilder = RegisterJob.builder(); + authenticationPropertiesBuilder = AuthenticationProperties.builder(); + authenticationPropertiesBuilder.grantType("client_credentials").tokenPath("access_token"); objectMapper = new ObjectMapper(); objectMapper.registerModule(new JavaTimeModule()); objectMapper.configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, false); } - @Given("the environment is {string}") - public void theEnvironmentIs(String environment) { - final String clientId = System.getenv("KEYCLOAK_CLIENT_ID"); - final String clientSecret = System.getenv("KEYCLOAK_CLIENT_SECRET"); - final String keycloakUrl = System.getenv("KEYCLOAK_HOST"); - final String irsUri; - if (environment.equals("DEV")) { - irsUri = System.getenv("IRS_DEV"); - } else if (environment.equals("INT")) { - irsUri = System.getenv("IRS_INT"); + @Given("the IRS URL {string}") + public void theIRSURL(String irsUrl) { + authenticationPropertiesBuilder.uri(irsUrl); + } + + @And("the user {string} with authentication") + public void theUser(String clientId) throws PropertyNotFoundException { + authenticationPropertiesBuilder.clientId(clientId); + final String keycloakClientSecretKey = "KEYCLOAK_CLIENT_SECRET"; + String clientSecret = System.getenv(keycloakClientSecretKey); + if (clientSecret != null) { + authenticationPropertiesBuilder.clientSecret(clientSecret); } else { - throw new PendingException(String.format("No implementation for environment: '%s'", environment)); + throw new PropertyNotFoundException("Environment Variable missing: " + keycloakClientSecretKey); } - authProperties = new AuthenticationProperties(irsUri, clientId, clientSecret, keycloakUrl, "client_credentials", - "access_token"); + } + + @And("the keycloak token url {string}") + public void theKeycloakTokenUrl(String tokenUrl) { + authenticationPropertiesBuilder.keycloakUrl(tokenUrl); } @Given("I register an IRS job for globalAssetId {string}") @@ -125,6 +134,7 @@ public void aspects(List aspects) { @When("I get the job-id") public void iGetTheJobId() { final RegisterJob job = registerJobBuilder.build(); + authProperties = authenticationPropertiesBuilder.build(); final JobHandle createdJobResponse = given().spec(authProperties.getNewAuthenticationRequestSpecification()) .contentType(ContentType.JSON) @@ -227,18 +237,13 @@ public void iCheckIfSubmodelsContainsBPNLNumberAtLeastTimes(String bpnlNumber, i @And("{string} are empty") public void areEmpty(String valueType) { - if ("tombstones".equals(valueType)) { - assertThat(completedJob.getTombstones()).isEmpty(); - } else if ("submodels".equals(valueType)) { - assertThat(completedJob.getSubmodels()).isEmpty(); - } else if ("relationships".equals(valueType)) { - assertThat(completedJob.getRelationships()).isEmpty(); - } else if ("shells".equals(valueType)) { - assertThat(completedJob.getShells()).isEmpty(); - } else if ("bpns".equals(valueType)) { - assertThat(completedJob.getBpns()).isEmpty(); - } else { - throw new PendingException(); + switch (valueType) { + case "tombstones" -> assertThat(completedJob.getTombstones()).isEmpty(); + case "submodels" -> assertThat(completedJob.getSubmodels()).isEmpty(); + case "relationships" -> assertThat(completedJob.getRelationships()).isEmpty(); + case "shells" -> assertThat(completedJob.getShells()).isEmpty(); + case "bpns" -> assertThat(completedJob.getBpns()).isEmpty(); + default -> throw new PendingException(); } } @@ -247,5 +252,9 @@ public void addJobIdToResult(Scenario scenario) { scenario.attach(jobId.toString(), MediaType.TEXT_PLAIN_VALUE, "jobId"); } - + private static class PropertyNotFoundException extends Exception { + public PropertyNotFoundException(final String message) { + super(message); + } + } } From 5d96c29f85c2b613881c1485328ae71029efde21 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Thu, 15 Dec 2022 14:02:58 +0100 Subject: [PATCH 24/62] feat(workflows):[TRI-739] Add workflow for BETA cucumber execution --- .../BETA-xray-cucumber-integration.yaml | 52 +++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 .github/workflows/BETA-xray-cucumber-integration.yaml diff --git a/.github/workflows/BETA-xray-cucumber-integration.yaml b/.github/workflows/BETA-xray-cucumber-integration.yaml new file mode 100644 index 0000000000..5f18b3fac9 --- /dev/null +++ b/.github/workflows/BETA-xray-cucumber-integration.yaml @@ -0,0 +1,52 @@ +name: IRS BETA Cucumber Integration test Xray execution + +on: + workflow_dispatch: # Trigger manually + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Set up JDK 17 + uses: actions/setup-java@v3 + with: + java-version: '17' + distribution: 'temurin' + + - name: Cache maven packages + uses: actions/cache@v3 + with: + path: ~/.m2 + key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} + restore-keys: ${{ runner.os }}-m2 + + - name: Download Feature Files + id: download + env: + JIRA_USERNAME: ${{ secrets.ORG_IRS_JIRA_USERNAME }} + JIRA_PASSWORD: ${{ secrets.ORG_IRS_JIRA_PASSWORD }} + # JIRA filter 11590: project = "TRI" AND type = Test AND "Test Type" = Cucumber AND environment ~ Beta + # Downloads all feature files of cucumber tests inside TRI project + run: | + export HTTP_RESULT=$(curl -s --show-error -w "%{http_code}" -u $JIRA_USERNAME:$JIRA_PASSWORD "https://jira.catena-x.net/rest/raven/1.0/export/test?filter=11590&fz=true" -o features.zip) + [[ $HTTP_RESULT == 200 || $HTTP_RESULT == 400 ]] + echo "::set-output name=http_response::$HTTP_RESULT" + + - name: Build with Maven + if: ${{ steps.download.outputs.http_response == '200' }} + env: + KEYCLOAK_CLIENT_SECRET: ${{ secrets.KEYCLOAK_OAUTH2_CLIENT_SECRET_BETA }} + run: | + unzip -o features.zip -d cucumber-tests/src/test/resources/features + mvn --batch-mode clean install -pl cucumber-tests,irs-models -D"cucumber.filter.tags"="not @Ignore and @INTEGRATION_TEST" + + - name: Submit results to Xray + if: ${{ always() && steps.download.outputs.http_response == '200' }} + env: + JIRA_USERNAME: ${{ secrets.ORG_IRS_JIRA_USERNAME }} + JIRA_PASSWORD: ${{ secrets.ORG_IRS_JIRA_PASSWORD }} + run: | + curl --request POST -u $JIRA_USERNAME:$JIRA_PASSWORD --header 'Content-Type: application/json' --data-binary '@cucumber-tests/report.json' "https://jira.catena-x.net/rest/raven/1.0/import/execution/cucumber" From 336bcf181846f2c0d8040b5647aa34c392e228cf Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Thu, 15 Dec 2022 14:03:50 +0100 Subject: [PATCH 25/62] feat(irs-api):[TRI-739] Add JsonAlias for old deprecated fields --- .../main/java/org/eclipse/tractusx/irs/component/Job.java | 5 +++++ .../java/org/eclipse/tractusx/irs/component/JobHandle.java | 2 ++ 2 files changed, 7 insertions(+) diff --git a/irs-models/src/main/java/org/eclipse/tractusx/irs/component/Job.java b/irs-models/src/main/java/org/eclipse/tractusx/irs/component/Job.java index 32e7b4a04d..5157d2d7af 100644 --- a/irs-models/src/main/java/org/eclipse/tractusx/irs/component/Job.java +++ b/irs-models/src/main/java/org/eclipse/tractusx/irs/component/Job.java @@ -28,6 +28,7 @@ import javax.validation.constraints.NotNull; import javax.validation.constraints.Size; +import com.fasterxml.jackson.annotation.JsonAlias; import com.fasterxml.jackson.annotation.JsonUnwrapped; import io.swagger.v3.oas.annotations.media.Schema; import lombok.AllArgsConstructor; @@ -56,6 +57,7 @@ public class Job { @Schema(description = "Id of the job.", minLength = INPUT_FIELD_MIN_LENGTH, maxLength = JOB_ID_FIELD_MAX_LENGTH, implementation = UUID.class, pattern = "/^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$/i") + @JsonAlias("jobId") private UUID id; @NotNull @@ -66,6 +68,7 @@ public class Job { private GlobalAssetIdentification globalAssetId; @NotBlank + @JsonAlias("jobState") private JobState state; @Schema(description = "Job error details.", implementation = JobErrorDetails.class) @@ -93,6 +96,7 @@ public class Job { * Mark the time the was completed */ @Schema(implementation = ZonedDateTime.class) + @JsonAlias("jobCompleted") private ZonedDateTime completedOn; /** @@ -105,6 +109,7 @@ public class Job { private Summary summary; @Schema(description = "The passed job parameters", implementation = JobParameter.class) + @JsonAlias("jobParameter") private JobParameter parameter; } diff --git a/irs-models/src/main/java/org/eclipse/tractusx/irs/component/JobHandle.java b/irs-models/src/main/java/org/eclipse/tractusx/irs/component/JobHandle.java index fe78019006..464ac03d43 100644 --- a/irs-models/src/main/java/org/eclipse/tractusx/irs/component/JobHandle.java +++ b/irs-models/src/main/java/org/eclipse/tractusx/irs/component/JobHandle.java @@ -23,6 +23,7 @@ import java.util.UUID; +import com.fasterxml.jackson.annotation.JsonAlias; import io.swagger.annotations.ApiModel; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Builder; @@ -44,6 +45,7 @@ public class JobHandle { @Schema(description = "Id of the job.", minLength = JOB_ID_FIELD_MAX_LENGTH, maxLength = JOB_ID_FIELD_MAX_LENGTH, implementation = UUID.class, pattern = "/^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$/i") + @JsonAlias("jobId") private UUID id; @Override From f8aeeb8bf024815d62e4e1f5ccd3e971092bd75c Mon Sep 17 00:00:00 2001 From: ds-alexander-bulgakov Date: Thu, 15 Dec 2022 14:11:34 +0100 Subject: [PATCH 26/62] THI-881: added expected jsons for test TRI-1003, TRI-1007 and TRI-1008 --- .../TRI-1003-expected-relationships.json | 3 + .../TRI-1003-expected-submodels.json | 65 +++++++++ .../TRI-1007-expected-relationships.json | 3 + .../TRI-1007-expected-submodels.json | 31 ++++ .../TRI-1008-expected-relationships.json | 3 + .../TRI-1008-expected-submodels.json | 137 ++++++++++++++++++ 6 files changed, 242 insertions(+) create mode 100644 cucumber-tests/src/test/resources/expected-files/TRI-1003-expected-relationships.json create mode 100644 cucumber-tests/src/test/resources/expected-files/TRI-1003-expected-submodels.json create mode 100644 cucumber-tests/src/test/resources/expected-files/TRI-1007-expected-relationships.json create mode 100644 cucumber-tests/src/test/resources/expected-files/TRI-1007-expected-submodels.json create mode 100644 cucumber-tests/src/test/resources/expected-files/TRI-1008-expected-relationships.json create mode 100644 cucumber-tests/src/test/resources/expected-files/TRI-1008-expected-submodels.json diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-1003-expected-relationships.json b/cucumber-tests/src/test/resources/expected-files/TRI-1003-expected-relationships.json new file mode 100644 index 0000000000..c566539032 --- /dev/null +++ b/cucumber-tests/src/test/resources/expected-files/TRI-1003-expected-relationships.json @@ -0,0 +1,3 @@ +{ + "relationships" : [ ] +} \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-1003-expected-submodels.json b/cucumber-tests/src/test/resources/expected-files/TRI-1003-expected-submodels.json new file mode 100644 index 0000000000..46b3e461ce --- /dev/null +++ b/cucumber-tests/src/test/resources/expected-files/TRI-1003-expected-submodels.json @@ -0,0 +1,65 @@ +{ + "submodels" : [ { + "identification" : "7a3d28ff-3227-422c-8995-b100f59441a1", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003C5WU", + "key" : "manufacturerId" + }, { + "value" : "13663I3-54", + "key" : "manufacturerPartId" + }, { + "value" : "NO-924925034854454837848325", + "key" : "partInstanceId" + } ], + "manufacturingInformation" : { + "date" : "2022-02-04T14:48:54", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:dc7c979a-5b32-447a-bf45-bdbd0597fc3f", + "partTypeInformation" : { + "manufacturerPartId" : "13663I3-54", + "customerPartId" : "13663I3-54", + "classification" : "component", + "nameAtManufacturer" : "Engineering Plastics", + "nameAtCustomer" : "Engineering Plastics" + } + } + }, { + "identification" : "12578a2a-fd46-4e71-bc82-5ac4e63b4470", + "aspectType" : "urn:bamm:io.catenax.material_for_recycling:1.1.0#MaterialForRecycling", + "payload" : { + "materialName" : "Engineering Plastics", + "materialClass" : "5.1", + "component" : [ { + "materialName" : "PA66", + "recycledContent" : 0, + "materialClass" : "5.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 70 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "PA66" + }, { + "materialName" : "GF-Faser", + "recycledContent" : 0, + "materialClass" : "5.1", + "quantity" : { + "unit" : { + "datatypeURI" : "urn:bamm:io.openmanufacturing:meta-model:1.0.0#curie", + "lexicalValue" : "unit:percent" + }, + "value" : 30 + }, + "aggregateState" : "solid", + "materialAbbreviation" : "GF30" + } ], + "recycledContent" : 0 + } + } ] +} \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-1007-expected-relationships.json b/cucumber-tests/src/test/resources/expected-files/TRI-1007-expected-relationships.json new file mode 100644 index 0000000000..c566539032 --- /dev/null +++ b/cucumber-tests/src/test/resources/expected-files/TRI-1007-expected-relationships.json @@ -0,0 +1,3 @@ +{ + "relationships" : [ ] +} \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-1007-expected-submodels.json b/cucumber-tests/src/test/resources/expected-files/TRI-1007-expected-submodels.json new file mode 100644 index 0000000000..556a3e6d52 --- /dev/null +++ b/cucumber-tests/src/test/resources/expected-files/TRI-1007-expected-submodels.json @@ -0,0 +1,31 @@ +{ + "submodels" : [ { + "identification" : "f96d804b-e9ce-4a94-9777-59bbcec8608e", + "aspectType" : "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload" : { + "localIdentifiers" : [ { + "value" : "BPNL00000003CBSO", + "key" : "manufacturerId" + }, { + "value" : "WT-91", + "key" : "manufacturerPartId" + }, { + "value" : "OMAAPTEJDGFKFIIOE", + "key" : "partInstanceId" + }, { + "value" : "OMAAPTEJDGFKFIIOE", + "key" : "van" + } ], + "manufacturingInformation" : { + "date" : "2014-03-08T05:55:23.000Z", + "country" : "DEU" + }, + "catenaXId" : "urn:uuid:72324655-4f20-493d-831a-482b33c3b7c3", + "partTypeInformation" : { + "manufacturerPartId" : "WT-91", + "classification" : "product", + "nameAtManufacturer" : "Vehicle Fully Electric" + } + } + } ] +} \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-1008-expected-relationships.json b/cucumber-tests/src/test/resources/expected-files/TRI-1008-expected-relationships.json new file mode 100644 index 0000000000..c566539032 --- /dev/null +++ b/cucumber-tests/src/test/resources/expected-files/TRI-1008-expected-relationships.json @@ -0,0 +1,3 @@ +{ + "relationships" : [ ] +} \ No newline at end of file diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-1008-expected-submodels.json b/cucumber-tests/src/test/resources/expected-files/TRI-1008-expected-submodels.json new file mode 100644 index 0000000000..a6ae7e442d --- /dev/null +++ b/cucumber-tests/src/test/resources/expected-files/TRI-1008-expected-submodels.json @@ -0,0 +1,137 @@ +{ + "submodels": [ + { + "identification": "0a66743c-ee33-4910-8d7b-773530147e39", + "aspectType": "urn:bamm:io.catenax.serial_part_typization:1.1.0#SerialPartTypization", + "payload": { + "localIdentifiers": [ + { + "value": "BPNL00000003CATD", + "key": "manufacturerId" + }, + { + "value": "ZZ-06", + "key": "manufacturerPartId" + }, + { + "value": "OMBPDACTDSYRGKAHU", + "key": "partInstanceId" + }, + { + "value": "OMBPDACTDSYRGKAHU", + "key": "van" + } + ], + "manufacturingInformation": { + "date": "2019-06-09T05:09:45.000Z", + "country": "DEU" + }, + "catenaXId": "urn:uuid:44d48fe9-314f-4856-a6b9-39c56df067cb", + "partTypeInformation": { + "manufacturerPartId": "ZZ-06", + "classification": "product", + "nameAtManufacturer": "Vehicle Combustion" + } + } + }, + { + "identification": "0a66743c-ee33-4910-8d7b-773530147e39", + "aspectType": "urn:bamm:io.catenax.certificate_of_destruction:1.0.0#CertificateOfDestruction", + "payload": { + "catenaXId": "urn:uuid:44d48fe9-314f-4856-a6b9-39c56df067cb", + "dismantlerProperties": { + "expiryDate": "2022-07-11T08:38:46.743Z", + "dismantlerAuditorContact": { + "phone": "+49458404363", + "fax": "+497740070" + }, + "dismantlerContact": { + "phone": "+492795608", + "fax": "+49476895" + }, + "dismantlerAuditorAddress": { + "zip": "68161", + "country": "DEU", + "street": "Speyerer Straße", + "houseNumber": "45", + "name": "UMaAIKKIkknjWEXJUfPxxQHeWKEJ", + "location": "Mannheim" + }, + "receiverAuditorAdress": { + "zip": "68161", + "country": "DEU", + "street": "Berliner Straße", + "houseNumber": "42", + "name": "VLhpfQGTMDYpsBZxvfBoeygjb", + "location": "Mannheim" + }, + "dismantlerAdress": { + "zip": "68165", + "country": "DEU", + "street": "Schubertstraße", + "houseNumber": "11", + "name": "JxkyvRnL", + "location": "Mannheim" + }, + "issueDate": "2022-07-11T08:38:46.743Z", + "isVehicleWithdrawnFromService": false, + "governmentAdress": { + "zip": "10719", + "country": "DEU", + "street": "Pariser Straße", + "houseNumber": "45", + "name": "RYtGKbgicZaHCBRQDSx", + "location": "Berlin" + } + }, + "serialNumber": "DIS1087432", + "companyNumber": "S30A00265", + "vehicleProperties": { + "licenseAbbreviation": "MA", + "isVehicleInformationComplete": false, + "licensePlate": "MA-UI123", + "identification": "WBAAY711X0KC28153", + "emptyWeight": 1.79, + "model": "Model A", + "brand": "OME", + "class": "01", + "firstRegistration": "19.12.2014" + }, + "returnPointProperties": { + "expiryDate": "2022-07-11T08:38:46.741Z", + "receiverAuditorContact": { + "phone": "+49004417570", + "fax": "+495516625649" + }, + "receiverContact": { + "phone": "+4912263422", + "fax": "+49288164270" + }, + "receiverAuditorAdress": { + "zip": "68161", + "country": "DEU", + "street": "Speyerer Straße", + "houseNumber": "45", + "name": "yedUsFwdkelQbxeTeQOvaScfqIOOmaa", + "location": "Mannheim" + }, + "issueDate": "2022-07-11T08:38:46.741Z", + "isVehicleWithdrawnFromService": true + }, + "vehicleOwnerProperties": { + "isVehicleOwnerInformationComplete": true, + "vehicleOwnerAddress": { + "zip": "68163", + "country": "DEU", + "street": "Rheinvillen Straße", + "houseNumber": "7", + "name": "eOMtThyhVNLWUZNRcBaQKxI", + "location": "Mannheim" + }, + "citizenship": "DEU" + }, + "dismantlingDate": "2022-07-11T08:38:46.739Z" + } + } + ] +} \ No newline at end of file From e9c5e5e96a7e46de3340d71c071413e64e758f69 Mon Sep 17 00:00:00 2001 From: ds-alexander-bulgakov Date: Fri, 16 Dec 2022 12:18:18 +0100 Subject: [PATCH 27/62] THI-961: added tavern tests and helpers for pagination --- api-tests/irs-api-tests.tavern.yaml | 86 +++++++++++++++++++++++++++++ api-tests/tavern_helpers.py | 19 ++++++- 2 files changed, 103 insertions(+), 2 deletions(-) diff --git a/api-tests/irs-api-tests.tavern.yaml b/api-tests/irs-api-tests.tavern.yaml index 06cfe79e52..38d22638af 100644 --- a/api-tests/irs-api-tests.tavern.yaml +++ b/api-tests/irs-api-tests.tavern.yaml @@ -1513,5 +1513,91 @@ stages: - function: api-tests.tavern_helpers:relationships_are_empty - function: api-tests.tavern_helpers:check_timestamps_for_completed_jobs - function: api-tests.tavern_helpers:errors_for_unknown_globalAssetId_are_correct + headers: + content-type: application/json + + +--- + + +test_name: Make sure pagination details exist as expected + +strict: + - headers:off + - json:off + +stages: + - name: authenticate and fetch access token + request: + url: "{tavern.env_vars.KEYCLOAK_HOST}" + method: POST + data: + grant_type: client_credentials + client_id: "{tavern.env_vars.KEYCLOAK_CLIENT_ID}" + client_secret: "{tavern.env_vars.KEYCLOAK_CLIENT_SECRET}" + response: + status_code: 200 + json: + token_type: Bearer + headers: + content-type: application/json + save: + json: + access_token: access_token + + - name: get all jobs + request: + url: "{tavern.env_vars.IRS_HOST}/irs/jobs" + method: GET + headers: + content-type: application/json + Authorization: "Bearer {access_token:s}" + response: + status_code: 200 + verify_response_with: + function: api-tests.tavern_helpers:check_pagination_details_exists + headers: + content-type: application/json + + +--- + + +test_name: Make sure pagination can be requested as expected + +strict: + - headers:off + - json:off + +stages: + - name: authenticate and fetch access token + request: + url: "{tavern.env_vars.KEYCLOAK_HOST}" + method: POST + data: + grant_type: client_credentials + client_id: "{tavern.env_vars.KEYCLOAK_CLIENT_ID}" + client_secret: "{tavern.env_vars.KEYCLOAK_CLIENT_SECRET}" + response: + status_code: 200 + json: + token_type: Bearer + headers: + content-type: application/json + save: + json: + access_token: access_token + + - name: get all jobs with requested pagination settings + request: + url: "{tavern.env_vars.IRS_HOST}/irs/jobs?page=1&size=3&sort=jobCompleted,asc" + method: GET + headers: + content-type: application/json + Authorization: "Bearer {access_token:s}" + response: + status_code: 200 + verify_response_with: + function: api-tests.tavern_helpers:check_pagination_is_requested_correctly headers: content-type: application/json \ No newline at end of file diff --git a/api-tests/tavern_helpers.py b/api-tests/tavern_helpers.py index 15bd949d32..2380e1f780 100644 --- a/api-tests/tavern_helpers.py +++ b/api-tests/tavern_helpers.py @@ -150,11 +150,26 @@ def check_completedOn_timestamp_exists(response): assert completedOn is not None - def check_startedOn_is_smaller_than_completedOn(response): response_list = response.json().get("content") for i in response_list: completedOn_timestamp = datetime.strptime(i.get("completedOn")[:26], '%Y-%m-%dT%H:%M:%S.%f').timestamp() startedOn_timestamp = datetime.strptime(i.get("startedOn")[:26], '%Y-%m-%dT%H:%M:%S.%f').timestamp() print(f"Check if startedOn timestamp '{startedOn_timestamp}' is smaller than completedOn timestamp '{completedOn_timestamp}'") - assert startedOn_timestamp < completedOn_timestamp \ No newline at end of file + assert startedOn_timestamp < completedOn_timestamp + + +def check_pagination_details_exists(response): + response_list = response.json() + assert response_list.get("pageNumber") == 0 + assert response_list.get("pageCount") > 0 + assert response_list.get("pageSize") == 20 + assert response_list.get("totalElements") > 0 + + +def check_pagination_is_requested_correctly(response): + response_list = response.json() + assert response_list.get("pageNumber") == 1 + assert response_list.get("pageCount") > 0 + assert response_list.get("pageSize") == 3 + assert response_list.get("totalElements") > 0 \ No newline at end of file From 7a20ec1c3e7374821c55b4450b4eae7b0bd891f7 Mon Sep 17 00:00:00 2001 From: ds-alexander-bulgakov Date: Fri, 16 Dec 2022 12:54:13 +0100 Subject: [PATCH 28/62] THI-961: added check for amount of given objects on page --- api-tests/tavern_helpers.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api-tests/tavern_helpers.py b/api-tests/tavern_helpers.py index 2380e1f780..bb13e2fa06 100644 --- a/api-tests/tavern_helpers.py +++ b/api-tests/tavern_helpers.py @@ -172,4 +172,5 @@ def check_pagination_is_requested_correctly(response): assert response_list.get("pageNumber") == 1 assert response_list.get("pageCount") > 0 assert response_list.get("pageSize") == 3 - assert response_list.get("totalElements") > 0 \ No newline at end of file + assert response_list.get("totalElements") > 0 + assert len(response.json().get("content")) == 3 \ No newline at end of file From c4a2e7a5d927beafe3ef2c1143faa223d2bab074 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Fri, 16 Dec 2022 13:29:32 +0100 Subject: [PATCH 29/62] feat(edc):[TRI-985] Update consumer EDC to 0.2.0 --- charts/edc-consumer/Chart.yaml | 4 ++-- charts/edc-consumer/charts/edc-controlplane/Chart.yaml | 4 ++-- .../charts/edc-controlplane/templates/configmap.yaml | 2 +- charts/edc-consumer/charts/edc-dataplane/Chart.yaml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/charts/edc-consumer/Chart.yaml b/charts/edc-consumer/Chart.yaml index 1e4e4758fc..553d9cd61f 100644 --- a/charts/edc-consumer/Chart.yaml +++ b/charts/edc-consumer/Chart.yaml @@ -14,13 +14,13 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.0.1 +version: 1.0.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.1.2" +appVersion: "0.2.0" dependencies: - name: common diff --git a/charts/edc-consumer/charts/edc-controlplane/Chart.yaml b/charts/edc-consumer/charts/edc-controlplane/Chart.yaml index 7857db2699..d5ea0fd459 100644 --- a/charts/edc-consumer/charts/edc-controlplane/Chart.yaml +++ b/charts/edc-consumer/charts/edc-controlplane/Chart.yaml @@ -4,6 +4,6 @@ name: edc-controlplane description: EDC Control-Plane home: https://github.com/catenax-ng/product-edc/deployment/helm/edc-controlplane type: application -appVersion: "0.1.2" -version: 0.1.2 +appVersion: "0.2.0" +version: 0.2.0 maintainers: [] \ No newline at end of file diff --git a/charts/edc-consumer/charts/edc-controlplane/templates/configmap.yaml b/charts/edc-consumer/charts/edc-controlplane/templates/configmap.yaml index a011da7673..b61c2eae07 100644 --- a/charts/edc-consumer/charts/edc-controlplane/templates/configmap.yaml +++ b/charts/edc-consumer/charts/edc-controlplane/templates/configmap.yaml @@ -23,7 +23,7 @@ data: edc.ids.id=urn:connector:edc-consumer-controlplane edc.ids.catalog.id=urn:catalog:default edc.ids.endpoint={{ .Values.edc.controlplane.url }}/api/v1/ids - edc.ids.endpoint.audience={{ .Values.edc.controlplane.url }}/api/v1/ids/data + edc.oauth.endpoint.audience={{ .Values.edc.controlplane.url }}/api/v1/ids/data edc.receiver.http.endpoint={{ tpl .Values.edc.receiver.callback.url . }} edc.transfer.dataplane.sync.endpoint=http://{{ .Release.Name }}-edc-dataplane:8185/api/public edc.transfer.proxy.endpoint={{ .Values.edc.dataplane.url }}/api/public diff --git a/charts/edc-consumer/charts/edc-dataplane/Chart.yaml b/charts/edc-consumer/charts/edc-dataplane/Chart.yaml index 9135014ca2..f545be48f5 100644 --- a/charts/edc-consumer/charts/edc-dataplane/Chart.yaml +++ b/charts/edc-consumer/charts/edc-dataplane/Chart.yaml @@ -5,6 +5,6 @@ description: >- EDC Data-Plane - The Eclipse DataSpaceConnector data layer with responsibility of transferring and receiving data streams home: https://github.com/catenax-ng/product-edc/deployment/helm/edc-dataplane type: application -appVersion: "0.1.2" -version: 0.1.2 +appVersion: "0.2.0" +version: 0.2.0 maintainers: [] \ No newline at end of file From 6c89934a2b75a348a36474a694fe3ab2be841b16 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Fri, 16 Dec 2022 13:59:54 +0100 Subject: [PATCH 30/62] feat(edc):[TRI-985] Update CHANGELOG.md --- charts/edc-consumer/CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/charts/edc-consumer/CHANGELOG.md b/charts/edc-consumer/CHANGELOG.md index 37018f1f2f..8ff76be111 100644 --- a/charts/edc-consumer/CHANGELOG.md +++ b/charts/edc-consumer/CHANGELOG.md @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Changed +- Updated EDC to 0.2.0 +- Renamed controlplane property `edc.ids.endpoint.audience` to `edc.oauth.endpoint.audience` ## [1.0.1] - 2022-11-27 ### Fixed From 671f2f93c7e4f370dea4defab4e26701b60748c6 Mon Sep 17 00:00:00 2001 From: "Krzysztof Massalski (Extern)" Date: Fri, 16 Dec 2022 14:23:27 +0100 Subject: [PATCH 31/62] feat(impl):[TRI-1009] expected relationships --- .../TRI-1009-expected-relationships.json | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 cucumber-tests/src/test/resources/expected-files/TRI-1009-expected-relationships.json diff --git a/cucumber-tests/src/test/resources/expected-files/TRI-1009-expected-relationships.json b/cucumber-tests/src/test/resources/expected-files/TRI-1009-expected-relationships.json new file mode 100644 index 0000000000..592702ad76 --- /dev/null +++ b/cucumber-tests/src/test/resources/expected-files/TRI-1009-expected-relationships.json @@ -0,0 +1,38 @@ +{ + "relationships": [ + { + "catenaXId": "urn:uuid:ceb6b964-5779-49c1-b5e9-0ee70528fcbd", + "linkedItem": { + "quantity": { + "quantityNumber": 1.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:a4a26b9c-9460-4cc5-8645-85916b86adb0" + }, + "aspectType": "SingleLevelUsageAsBuilt" + }, + { + "catenaXId": "urn:uuid:d3c0bf85-d44f-47c5-990d-fec8a36065c6", + "linkedItem": { + "quantity": { + "quantityNumber": 1.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:ceb6b964-5779-49c1-b5e9-0ee70528fcbd" + }, + "aspectType": "SingleLevelUsageAsBuilt" + } + ] +} \ No newline at end of file From 2aef2ed7973e41491433d1ed9de8c1e0436521ef Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Mon, 19 Dec 2022 09:14:30 +0100 Subject: [PATCH 32/62] feat(charts):[TRI-985] Update CHANGELOG.md version --- charts/edc-consumer/CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/charts/edc-consumer/CHANGELOG.md b/charts/edc-consumer/CHANGELOG.md index 8ff76be111..b3bcc47f53 100644 --- a/charts/edc-consumer/CHANGELOG.md +++ b/charts/edc-consumer/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [1.0.2] - 2022-12-19 ### Changed - Updated EDC to 0.2.0 - Renamed controlplane property `edc.ids.endpoint.audience` to `edc.oauth.endpoint.audience` From 422f48dcbcc46405e08ce9d867dc958df576e960 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Mon, 19 Dec 2022 09:48:26 +0100 Subject: [PATCH 33/62] fix(workflows):[-] Remove branch trigger --- .github/workflows/synch-env-branch.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/synch-env-branch.yml b/.github/workflows/synch-env-branch.yml index 6e9f740e4e..6e081f5e07 100644 --- a/.github/workflows/synch-env-branch.yml +++ b/.github/workflows/synch-env-branch.yml @@ -5,7 +5,6 @@ on: push: branches: - main - - fix/branch-sync-action jobs: sync-branches: From b9074cb5ccb9d37e42128de90db395df1beda106 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Mon, 19 Dec 2022 10:46:43 +0100 Subject: [PATCH 34/62] fix(workflows):[-] Add fetch origin and merge --- .github/workflows/synch-env-branch.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/synch-env-branch.yml b/.github/workflows/synch-env-branch.yml index 6e081f5e07..5481893516 100644 --- a/.github/workflows/synch-env-branch.yml +++ b/.github/workflows/synch-env-branch.yml @@ -5,6 +5,7 @@ on: push: branches: - main + - fix/branch-sync-action jobs: sync-branches: @@ -21,7 +22,8 @@ jobs: git config user.email github-actions@github.com git fetch --no-tags --progress git checkout --progress -b catena-x-environments origin/catena-x-environments - git merge origin/main --allow-unrelated-histories + git fetch origin --recurse-submodules=no --progress --prune + git merge origin/main -v git push env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 68ea022eace12a12c57db9722ca36de2e33d3844 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Mon, 19 Dec 2022 10:51:08 +0100 Subject: [PATCH 35/62] fix(workflows):[-] Remove branch trigger --- .github/workflows/synch-env-branch.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/synch-env-branch.yml b/.github/workflows/synch-env-branch.yml index 5481893516..384355e065 100644 --- a/.github/workflows/synch-env-branch.yml +++ b/.github/workflows/synch-env-branch.yml @@ -5,7 +5,6 @@ on: push: branches: - main - - fix/branch-sync-action jobs: sync-branches: From 2d13afcd5698d703913f31d9dc88d93cb69f95cb Mon Sep 17 00:00:00 2001 From: Jan Kreutzfeld Date: Mon, 19 Dec 2022 12:41:39 +0100 Subject: [PATCH 36/62] chore(helm):[TRI-368] Introduce configmap instead of ENVs --- .../configmap-spring-app-config.yaml | 64 +++++++++++++++++++ charts/irs/templates/deployment.yaml | 45 +++---------- charts/irs/values.yaml | 4 +- 3 files changed, 77 insertions(+), 36 deletions(-) create mode 100644 charts/irs/templates/configmap-spring-app-config.yaml diff --git a/charts/irs/templates/configmap-spring-app-config.yaml b/charts/irs/templates/configmap-spring-app-config.yaml new file mode 100644 index 0000000000..2a1dfd050a --- /dev/null +++ b/charts/irs/templates/configmap-spring-app-config.yaml @@ -0,0 +1,64 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "irs.fullname" . }}-configmap + namespace: {{ .Values.namespace }} +data: + application.yaml: |- + server: + trustedPort: {{ .Values.service.trustedPort }} + + irs: + apiUrl: {{ tpl .Values.irsUrl . | quote }} + + blobstore: + endpoint: {{ tpl .Values.minioUrl . | quote }} + accessKey: "${MINIO_ACCESS_KEY}" # taken from secret ENV + secretKey: "${MINIO_SECRET_KEY}" # taken from secret ENV + + spring: + security: + oauth2: + client: + registration: + keycloak: + client-id: "${KEYCLOAK_OAUTH2_CLIENT_ID}" # taken from secret ENV + client-secret: "${KEYCLOAK_OAUTH2_CLIENT_SECRET}" # taken from secret ENV + provider: + keycloak: + token-uri: {{ tpl .Values.keycloak.oauth2.clientTokenUri . | quote }} + resourceserver: + jwt: + jwk-set-uri: {{ tpl .Values.keycloak.oauth2.jwkSetUri . | quote }} + + digitalTwinRegistry: + url: {{ tpl .Values.digitalTwinRegistry.url . | quote }} + + semanticsHub: + url: {{ tpl .Values.semanticsHub.url . | quote }} + defaultUrns: {{ tpl (.Values.semanticsHub.defaultUrns | default "") . | quote }} + + bpdm: + url: {{ tpl .Values.bpdm.url . | quote }} + + edc: + controlplane: + request-ttl: {{ .Values.edc.controlplane.request.ttl | default "PT10M" | quote }} + endpoint: + data: {{ tpl (.Values.edc.controlplane.endpoint.data | default (printf "http://%s%s" .Release.Name "-edc-controlplane:8181/data")) . | quote }} + provider-suffix: {{ tpl .Values.edc.controlplane.provider.suffix . | quote }} + catalog-limit: {{ .Values.edc.controlplane.catalog.limit }} + api-key: + header: {{ tpl (.Values.edc.controlplane.apikey.header | default "") . | quote }} + secret: ${EDC_API_KEY_SECRET:} # taken from secret ENV + + submodel: + request-ttl: {{ tpl .Values.edc.submodel.request.ttl . | default "PT10M" | quote }} + path: {{ tpl (.Values.edc.submodel.path | default "/submodel") . | quote }} + urn-prefix: {{ tpl (.Values.edc.submodel.urnprefix | default "/urn") . | quote }} + +{{- if .Values.config -}} + # additional config entries + {{- tpl (toYaml .Values.config) . | nindent 4 }} +{{- end }} + diff --git a/charts/irs/templates/deployment.yaml b/charts/irs/templates/deployment.yaml index f83a900d3f..b5ca178620 100644 --- a/charts/irs/templates/deployment.yaml +++ b/charts/irs/templates/deployment.yaml @@ -16,8 +16,9 @@ spec: {{- include "irs.selectorLabels" . | nindent 6 }} template: metadata: - {{- with .Values.podAnnotations }} annotations: + checksum/config: {{ include (print $.Template.BasePath "/configmap-spring-app-config.yaml") . | sha256sum }} + {{- with .Values.podAnnotations }} {{- toYaml . | nindent 8 }} {{- end }} labels: @@ -40,13 +41,9 @@ spec: volumeMounts: - name: tmp mountPath: /tmp + - name: application-config + mountPath: /app/config env: - - name: SERVER_TRUSTED_PORT - value: {{ .Values.service.trustedPort | quote }} - - name: IRS_API_URL - value: "{{ .Values.irsUrl }}" - - name: MINIO_URL - value: {{ tpl .Values.minioUrl . }} - name: MINIO_ACCESS_KEY valueFrom: secretKeyRef: @@ -67,39 +64,11 @@ spec: secretKeyRef: name: {{ template "irs.secretName" . }} key: keycloakClientSecret - - name: KEYCLOAK_OAUTH2_CLIENT_TOKEN_URI - value: {{ .Values.keycloak.oauth2.clientTokenUri }} - - name: KEYCLOAK_OAUTH2_JWK_SET_URI - value: {{ .Values.keycloak.oauth2.jwkSetUri }} - - name: DIGITALTWINREGISTRY_URL - value: {{ .Values.digitalTwinRegistry.url }} - - name: SEMANTICSHUB_URL - value: {{ .Values.semanticsHub.url }} - - name: SEMANTICSHUB_DEFAULT_URNS - value: {{ .Values.semanticsHub.defaultUrns }} - - name: BPDM_URL - value: {{ .Values.bpdm.url }} - - name: EDC_CONTROLPLANE_ENDPOINT_DATA - value: {{ tpl .Values.edc.controlplane.endpoint.data . | default (printf "http://%s%s" .Release.Name "-edc-controlplane:8181/data") }} - - name: EDC_CONTROLPLANE_REQUEST_TTL - value: {{ .Values.edc.controlplane.request.ttl }} - - name: EDC_CONTROLPLANE_PROVIDER_SUFFIX - value: {{ .Values.edc.controlplane.provider.suffix }} - - name: EDC_CONTROLPLANE_CATALOG_LIMIT - value: {{ .Values.edc.controlplane.catalog.limit | quote }} - - name: EDC_API_KEY_HEADER - value: {{ .Values.edc.controlplane.apikey.header }} - name: EDC_API_KEY_SECRET valueFrom: secretKeyRef: name: {{ template "irs.secretName" . }} key: edcApiSecret - - name: EDC_SUBMODEL_REQUEST_TTL - value: {{ .Values.edc.submodel.request.ttl }} - - name: EDC_SUBMODEL_PATH - value: {{ .Values.edc.submodel.path }} - - name: EDC_SUBMODEL_URN_PREFIX - value: {{ .Values.edc.submodel.urnprefix }} ports: - name: http containerPort: 8080 @@ -137,6 +106,12 @@ spec: volumes: - name: tmp emptyDir: {} + - name: application-config + configMap: + name: {{ include "irs.fullname" . }}-configmap + items: + - key: application.yaml + path: application.yaml {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} diff --git a/charts/irs/values.yaml b/charts/irs/values.yaml index cbbda9f1d4..3aa4e484cf 100644 --- a/charts/irs/values.yaml +++ b/charts/irs/values.yaml @@ -104,7 +104,7 @@ digitalTwinRegistry: url: https:// semanticsHub: url: https:// - defaultUrns: > + defaultUrns: >- urn:bamm:io.catenax.serial_part_typization:1.0.0#SerialPartTypization # ,urn:bamm:com.catenax.assembly_part_relationship:1.0.0#AssemblyPartRelationship bpdm: @@ -137,6 +137,8 @@ edc: path: /submodel urnprefix: /urn +config: + # add additional configuration values here (overrides IRS Spring application.yaml) ####################### # Minio Configuration # From 2cc2b269271399ff0b503d2f73d80b336931018f Mon Sep 17 00:00:00 2001 From: Jan Kreutzfeld Date: Mon, 19 Dec 2022 17:28:20 +0100 Subject: [PATCH 37/62] chore(helm):[TRI-368] Improve configurability Use separate RestTemplates for each service, introduce configurable endpoints instead of base url. Switch to Durations in config. --- .../configmap-spring-app-config.yaml | 7 ++- charts/irs/values.yaml | 4 ++ .../domain/DigitalTwinRegistryClient.java | 61 ++++++++++++++----- .../eclipse/tractusx/irs/bpdm/BpdmClient.java | 43 ++++++++++--- .../irs/configuration/JobConfiguration.java | 5 +- .../irs/configuration/RestTemplateConfig.java | 51 ++++++++++++---- .../irs/connector/job/JobOrchestrator.java | 12 ++-- .../tractusx/irs/connector/job/JobTTL.java | 6 +- .../irs/semanticshub/SemanticsHubClient.java | 41 ++++++++++--- .../src/main/resources/application-local.yml | 4 +- irs-api/src/main/resources/application.yml | 27 ++++++-- .../DigitalTwinRegistryClientImplTest.java | 2 +- .../tractusx/irs/bpdm/BpdmClientImplTest.java | 2 +- .../SemanticsHubClientImplTest.java | 5 +- 14 files changed, 200 insertions(+), 70 deletions(-) diff --git a/charts/irs/templates/configmap-spring-app-config.yaml b/charts/irs/templates/configmap-spring-app-config.yaml index 2a1dfd050a..948000752a 100644 --- a/charts/irs/templates/configmap-spring-app-config.yaml +++ b/charts/irs/templates/configmap-spring-app-config.yaml @@ -32,14 +32,15 @@ data: jwk-set-uri: {{ tpl .Values.keycloak.oauth2.jwkSetUri . | quote }} digitalTwinRegistry: - url: {{ tpl .Values.digitalTwinRegistry.url . | quote }} + descriptorEndpoint: {{ tpl .Values.digitalTwinRegistry.descriptorEndpoint . | quote }} + shellLookupEndpoint: {{ tpl .Values.digitalTwinRegistry.shellLookupEndpoint . | quote }} semanticsHub: - url: {{ tpl .Values.semanticsHub.url . | quote }} + modelJsonSchemaEndpoint: {{ tpl .Values.semanticsHub.modelJsonSchemaEndpoint . | quote }} defaultUrns: {{ tpl (.Values.semanticsHub.defaultUrns | default "") . | quote }} bpdm: - url: {{ tpl .Values.bpdm.url . | quote }} + bpnEndpoint: {{ tpl .Values.bpdm.bpnEndpoint . | quote }} edc: controlplane: diff --git a/charts/irs/values.yaml b/charts/irs/values.yaml index 3aa4e484cf..5edd09fff4 100644 --- a/charts/irs/values.yaml +++ b/charts/irs/values.yaml @@ -102,13 +102,17 @@ ingress: secretName: tls-secret digitalTwinRegistry: url: https:// + descriptorEndpoint: "{{ tpl .Values.digitalTwinRegistry.url . }}/registry/shell-descriptors/{aasIdentifier}" + shellLookupEndpoint: "{{ tpl .Values.digitalTwinRegistry.url . }}/lookup/shells?assetIds={assetIds}" semanticsHub: url: https:// + modelJsonSchemaEndpoint: "{{ tpl .Values.semanticsHub.url . }}/models/{urn}/json-schema" defaultUrns: >- urn:bamm:io.catenax.serial_part_typization:1.0.0#SerialPartTypization # ,urn:bamm:com.catenax.assembly_part_relationship:1.0.0#AssemblyPartRelationship bpdm: url: https:// + bpnEndpoint: "{{ tpl .Values.bpdm.url . }}/api/catena/legal-entities/{idValue}?idType={idType}" minioUser: minioPassword: minioUrl: "http://{{ .Release.Name }}-minio:9000" diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/registry/domain/DigitalTwinRegistryClient.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/registry/domain/DigitalTwinRegistryClient.java index 2ebebed8db..7ad6d25c10 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/registry/domain/DigitalTwinRegistryClient.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/registry/domain/DigitalTwinRegistryClient.java @@ -21,14 +21,16 @@ ********************************************************************************/ package org.eclipse.tractusx.irs.aaswrapper.registry.domain; -import static org.eclipse.tractusx.irs.configuration.RestTemplateConfig.OAUTH_REST_TEMPLATE; +import static org.eclipse.tractusx.irs.configuration.RestTemplateConfig.DTR_REST_TEMPLATE; import java.net.SocketTimeoutException; import java.util.Collections; import java.util.List; +import java.util.Map; import java.util.function.Supplier; import io.github.resilience4j.retry.annotation.Retry; +import org.apache.commons.lang3.StringUtils; import org.eclipse.tractusx.irs.component.assetadministrationshell.AssetAdministrationShellDescriptor; import org.eclipse.tractusx.irs.component.assetadministrationshell.IdentifierKeyValuePair; import org.eclipse.tractusx.irs.configuration.local.CxTestDataContainer; @@ -68,7 +70,9 @@ interface DigitalTwinRegistryClient { * Digital Twin Registry Rest Client Stub used in local environment */ @Service -@Profile({ "local", "stubtest" }) +@Profile({ "local", + "stubtest" +}) class DigitalTwinRegistryClientLocalStub implements DigitalTwinRegistryClient { private final AssetAdministrationShellTestdataCreator testdataCreator; @@ -95,35 +99,64 @@ public List getAllAssetAdministrationShellIdsByAssetLink(final List values = Map.of(PLACEHOLDER_AAS_IDENTIFIER, aasIdentifier); return execute( - () -> restTemplate.getForObject(uriBuilder.build().toUri(), AssetAdministrationShellDescriptor.class)); + () -> restTemplate.getForObject(uriBuilder.build(values), AssetAdministrationShellDescriptor.class)); } @Override @Retry(name = "registry") public List getAllAssetAdministrationShellIdsByAssetLink(final List assetIds) { - final UriComponentsBuilder uriBuilder = UriComponentsBuilder.fromUriString(digitalTwinRegistryUrl); - uriBuilder.path("/lookup/shells").queryParam("assetIds", new JsonUtil().asString(assetIds)); - - return execute(() -> restTemplate.getForObject(uriBuilder.build().toUri(), List.class)); + final UriComponentsBuilder uriBuilder = UriComponentsBuilder.fromUriString(shellLookupEndpoint); + final var values = Map.of(PLACEHOLDER_ASSET_IDS, new JsonUtil().asString(assetIds)); + return execute(() -> restTemplate.getForObject(uriBuilder.build(values), List.class)); } private T execute(final Supplier supplier) { diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/bpdm/BpdmClient.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/bpdm/BpdmClient.java index 1c55e8b6cf..1fcf979020 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/bpdm/BpdmClient.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/bpdm/BpdmClient.java @@ -21,10 +21,12 @@ ********************************************************************************/ package org.eclipse.tractusx.irs.bpdm; -import static org.eclipse.tractusx.irs.configuration.RestTemplateConfig.OAUTH_REST_TEMPLATE; +import static org.eclipse.tractusx.irs.configuration.RestTemplateConfig.BPDM_REST_TEMPLATE; import java.util.Collections; +import java.util.Map; +import org.apache.commons.lang3.StringUtils; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Profile; @@ -39,8 +41,9 @@ interface BpdmClient { /** * Find a business partner by the specified identifier. + * * @param idValue identifier value - * @param idType type of identifier + * @param idType type of identifier * @return */ BusinessPartnerResponse getBusinessPartner(String idValue, String idType); @@ -51,7 +54,9 @@ interface BpdmClient { * Business Partner Data Management Rest Client Stub used in local environment */ @Service -@Profile({ "local", "test" }) +@Profile({ "local", + "test" +}) class BpdmClientLocalStub implements BpdmClient { @Override @@ -70,20 +75,44 @@ public BusinessPartnerResponse getBusinessPartner(final String idValue, final St @Profile({ "!local && !test" }) class BpdmClientImpl implements BpdmClient { + private static final String PLACEHOLDER_BPID = "partnerId"; + private static final String PLACEHOLDER_ID_TYPE = "idType"; + private final RestTemplate restTemplate; private final String bpdmUrl; - /* package */ BpdmClientImpl(@Qualifier(OAUTH_REST_TEMPLATE) final RestTemplate restTemplate, - @Value("${bpdm.url:}") final String bpdmUrl) { + /* package */ BpdmClientImpl(@Qualifier(BPDM_REST_TEMPLATE) final RestTemplate restTemplate, + @Value("${bpdm.bpnEndpoint:}") final String bpdmUrl) { this.restTemplate = restTemplate; this.bpdmUrl = bpdmUrl; + + if (StringUtils.isNotBlank(bpdmUrl)) { + ensureUrlContainsPlaceholders(bpdmUrl); + } + } + + private void ensureUrlContainsPlaceholders(final String bpdmUrl) { + require(bpdmUrl, PLACEHOLDER_ID_TYPE); + require(bpdmUrl, PLACEHOLDER_BPID); + } + + private static void require(final String bpdmUrl, final String placeholder) { + if (!bpdmUrl.contains(wrap(placeholder))) { + throw new IllegalStateException( + "Configuration value for 'bpdm.bpnEndpoint' must contain the URL placeholder '" + placeholder + + "'!"); + } + } + + private static String wrap(final String placeholderIdType) { + return "{" + placeholderIdType + "}"; } @Override public BusinessPartnerResponse getBusinessPartner(final String idValue, final String idType) { final UriComponentsBuilder uriBuilder = UriComponentsBuilder.fromUriString(bpdmUrl); - uriBuilder.path("/api/catena/legal-entities/").path(idValue).queryParam("idType", idType); + final Map values = Map.of(PLACEHOLDER_BPID, idValue, PLACEHOLDER_ID_TYPE, idType); - return restTemplate.getForObject(uriBuilder.build().toUri(), BusinessPartnerResponse.class); + return restTemplate.getForObject(uriBuilder.build(values), BusinessPartnerResponse.class); } } diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/JobConfiguration.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/JobConfiguration.java index 015f4a345c..99d3861892 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/JobConfiguration.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/JobConfiguration.java @@ -22,6 +22,7 @@ package org.eclipse.tractusx.irs.configuration; import java.time.Clock; +import java.time.Duration; import java.util.concurrent.Executors; import java.util.concurrent.ScheduledExecutorService; @@ -69,8 +70,8 @@ public class JobConfiguration { public JobOrchestrator jobOrchestrator( final DigitalTwinDelegate digitalTwinDelegate, final BlobPersistence blobStore, final JobStore jobStore, final MeterRegistryService meterService, final ApplicationEventPublisher applicationEventPublisher, - @Value("${irs.job.jobstore.ttl.failedInHours:}") final int ttlFailedJobs, - @Value("${irs.job.jobstore.ttl.completedInHours:}") final int ttlCompletedJobs) { + @Value("${irs.job.jobstore.ttl.failed:}") final Duration ttlFailedJobs, + @Value("${irs.job.jobstore.ttl.completed:}") final Duration ttlCompletedJobs) { final var manager = new AASTransferProcessManager(digitalTwinDelegate, Executors.newCachedThreadPool(), blobStore); diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/RestTemplateConfig.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/RestTemplateConfig.java index 04b42a125a..0ca4ee81c1 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/RestTemplateConfig.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/RestTemplateConfig.java @@ -29,6 +29,7 @@ import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.jetbrains.annotations.NotNull; +import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.web.client.RestTemplateBuilder; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @@ -57,30 +58,54 @@ @RequiredArgsConstructor public class RestTemplateConfig { - public static final String OAUTH_REST_TEMPLATE = "oAuthRestTemplate"; + public static final String DTR_REST_TEMPLATE = "oAuthRestTemplate"; + public static final String BPDM_REST_TEMPLATE = "oAuthRestTemplate"; + public static final String SEMHUB_REST_TEMPLATE = "oAuthRestTemplate"; public static final String NO_ERROR_REST_TEMPLATE = "noErrorRestTemplate"; public static final String EDC_REST_TEMPLATE = "edcRestTemplate"; private static final String CLIENT_REGISTRATION_ID = "keycloak"; - private static final int TIMEOUT_SECONDS = 90; private final OAuth2AuthorizedClientService oAuth2AuthorizedClientService; private final ClientRegistrationRepository clientRegistrationRepository; - @Bean(OAUTH_REST_TEMPLATE) - /* package */ RestTemplate oAuthRestTemplate(final RestTemplateBuilder restTemplateBuilder) { + private RestTemplate oAuthRestTemplate(final RestTemplateBuilder restTemplateBuilder, final Duration readTimeout, + final Duration connectTimeout) { final var clientRegistration = clientRegistrationRepository.findByRegistrationId(CLIENT_REGISTRATION_ID); return restTemplateBuilder.additionalInterceptors( new OAuthClientCredentialsRestTemplateInterceptor(authorizedClientManager(), clientRegistration)) - .setReadTimeout(Duration.ofSeconds(TIMEOUT_SECONDS)) - .setConnectTimeout(Duration.ofSeconds(TIMEOUT_SECONDS)) + .setReadTimeout(readTimeout) + .setConnectTimeout(connectTimeout) .build(); } + @Bean(DTR_REST_TEMPLATE) + /* package */ RestTemplate digitalTwinRegistryRestTemplate(final RestTemplateBuilder restTemplateBuilder, + @Value("${digitalTwinRegistry.timeout.read}") final Duration readTimeout, + @Value("${digitalTwinRegistry.timeout.connect}") final Duration connectTimeout) { + return oAuthRestTemplate(restTemplateBuilder, readTimeout, connectTimeout); + } + + @Bean(SEMHUB_REST_TEMPLATE) + /* package */ RestTemplate semanticHubRestTemplate(final RestTemplateBuilder restTemplateBuilder, + @Value("${semanticsHub.timeout.read}") final Duration readTimeout, + @Value("${semanticsHub.timeout.connect}") final Duration connectTimeout) { + return oAuthRestTemplate(restTemplateBuilder, readTimeout, connectTimeout); + } + + @Bean(BPDM_REST_TEMPLATE) + /* package */ RestTemplate bpdmRestTemplate(final RestTemplateBuilder restTemplateBuilder, + @Value("${bpdm.timeout.read}") final Duration readTimeout, + @Value("${bpdm.timeout.connect}") final Duration connectTimeout) { + return oAuthRestTemplate(restTemplateBuilder, readTimeout, connectTimeout); + } + @Bean(NO_ERROR_REST_TEMPLATE) - /* package */ RestTemplate noErrorRestTemplate(final RestTemplateBuilder restTemplateBuilder) { - final RestTemplate restTemplate = restTemplateBuilder.setReadTimeout(Duration.ofSeconds(TIMEOUT_SECONDS)) - .setConnectTimeout(Duration.ofSeconds(TIMEOUT_SECONDS)) + /* package */ RestTemplate noErrorRestTemplate(final RestTemplateBuilder restTemplateBuilder, + @Value("${irs.job.callback.timeout.read}") final Duration readTimeout, + @Value("${irs.job.callback.timeout.connect}") final Duration connectTimeout) { + final RestTemplate restTemplate = restTemplateBuilder.setReadTimeout(readTimeout) + .setConnectTimeout(connectTimeout) .build(); restTemplate.setErrorHandler(new DefaultResponseErrorHandler() { @@ -147,10 +172,10 @@ private String buildAuthorizationHeaderValue(final OAuth2AccessToken accessToken } @Bean(EDC_REST_TEMPLATE) - /* package */ RestTemplate edcRestTemplate(final RestTemplateBuilder restTemplateBuilder) { - return restTemplateBuilder.setReadTimeout(Duration.ofSeconds(TIMEOUT_SECONDS)) - .setConnectTimeout(Duration.ofSeconds(TIMEOUT_SECONDS)) - .build(); + /* package */ RestTemplate edcRestTemplate(final RestTemplateBuilder restTemplateBuilder, + @Value("${edc.submodel.timeout.read}") final Duration readTimeout, + @Value("${edc.submodel.timeout.connect}") final Duration connectTimeout) { + return restTemplateBuilder.setReadTimeout(readTimeout).setConnectTimeout(connectTimeout).build(); } } diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobOrchestrator.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobOrchestrator.java index 07268b30b0..339faf3459 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobOrchestrator.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobOrchestrator.java @@ -197,8 +197,7 @@ public JobInitiateResponse startJob(final String globalAssetId, final JobParamet public void findAndCleanupCompletedJobs() { log.info("Running cleanup of completed jobs"); final ZonedDateTime currentDateMinusSeconds = ZonedDateTime.now(ZoneOffset.UTC) - .minus(jobTTL.getTtlCompletedJobsInHours(), - ChronoUnit.HOURS); + .minus(jobTTL.getTtlCompletedJobs()); final List completedJobs = jobStore.findByStateAndCompletionDateOlderThan(JobState.COMPLETED, currentDateMinusSeconds); @@ -212,8 +211,7 @@ public void findAndCleanupFailedJobs() { log.info("Running cleanup of failed jobs"); final ZonedDateTime currentDateMinusSeconds = ZonedDateTime.now(ZoneOffset.UTC) - .minus(jobTTL.getTtlFailedJobsInHours(), - ChronoUnit.HOURS); + .minus(jobTTL.getTtlFailedJobs()); final List failedJobs = jobStore.findByStateAndCompletionDateOlderThan(JobState.ERROR, currentDateMinusSeconds); @@ -225,13 +223,13 @@ private List deleteJobs(final List jobs) { return jobs.stream() .map(job -> deleteJobsAndDecreaseJobsInJobStoreMetrics(job.getJobIdString())) .flatMap(Optional::stream) - .collect(Collectors.toList()); + .toList(); } private Optional deleteJobsAndDecreaseJobsInJobStoreMetrics(final String jobId) { final Optional optJob = jobStore.deleteJob(jobId); if (optJob.isPresent()) { - meterService.setNumberOfJobsInJobStore(Long.valueOf(jobStore.findAll().size())); + meterService.setNumberOfJobsInJobStore((long) jobStore.findAll().size()); } return optJob; } @@ -269,7 +267,7 @@ private void publishJobProcessingFinishedEventIfFinished(final String jobId) { } private long startTransfers(final MultiTransferJob job, final Stream dataRequests) /* throws JobErrorDetails */ { - return dataRequests.map(r -> startTransfer(job, r)).collect(Collectors.counting()); + return dataRequests.map(r -> startTransfer(job, r)).count(); } private TransferInitiateResponse startTransfer(final MultiTransferJob job, diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobTTL.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobTTL.java index 9539a87edf..e6b0fa6c41 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobTTL.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobTTL.java @@ -21,6 +21,8 @@ ********************************************************************************/ package org.eclipse.tractusx.irs.connector.job; +import java.time.Duration; + import lombok.Value; /** @@ -28,6 +30,6 @@ */ @Value public class JobTTL { - private int ttlCompletedJobsInHours; - private int ttlFailedJobsInHours; + private Duration ttlCompletedJobs; + private Duration ttlFailedJobs; } diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/semanticshub/SemanticsHubClient.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/semanticshub/SemanticsHubClient.java index 1378797472..415c3f7455 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/semanticshub/SemanticsHubClient.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/semanticshub/SemanticsHubClient.java @@ -21,6 +21,9 @@ ********************************************************************************/ package org.eclipse.tractusx.irs.semanticshub; +import java.util.Map; + +import org.apache.commons.lang3.StringUtils; import org.eclipse.tractusx.irs.configuration.RestTemplateConfig; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.beans.factory.annotation.Value; @@ -36,6 +39,7 @@ interface SemanticsHubClient { /** * Return Json Schema of requsted model by urn + * * @param urn of the model * @return Json Schema */ @@ -47,15 +51,14 @@ interface SemanticsHubClient { * Semantics Hub Rest Client Stub used in local environment */ @Service -@Profile({ "local", "test" }) +@Profile({ "local", + "test" +}) class SemanticsHubClientLocalStub implements SemanticsHubClient { @Override public String getModelJsonSchema(final String urn) { - return "{" - + " \"$schema\": \"http://json-schema.org/draft-07/schema#\"," - + " \"type\": \"integer\"" - + "}"; + return "{" + " \"$schema\": \"http://json-schema.org/draft-07/schema#\"," + " \"type\": \"integer\"" + "}"; } } @@ -66,20 +69,38 @@ public String getModelJsonSchema(final String urn) { @Profile({ "!local && !test" }) class SemanticsHubClientImpl implements SemanticsHubClient { + private static final String PLACEHOLDER_URN = "urn"; + private final RestTemplate restTemplate; private final String semanticsHubUrl; - /* package */ SemanticsHubClientImpl(@Qualifier(RestTemplateConfig.OAUTH_REST_TEMPLATE) final RestTemplate restTemplate, - @Value("${semanticsHub.url:}") final String semanticsHubUrl) { + /* package */ SemanticsHubClientImpl( + @Qualifier(RestTemplateConfig.SEMHUB_REST_TEMPLATE) final RestTemplate restTemplate, + @Value("${semanticsHub.modelJsonSchemaEndpoint:}") final String semanticsHubUrl) { this.restTemplate = restTemplate; this.semanticsHubUrl = semanticsHubUrl; + + if (StringUtils.isNotBlank(semanticsHubUrl)) { + requirePlaceholder(semanticsHubUrl); + } + } + + private static void requirePlaceholder(final String url) { + if (!url.contains(wrap(SemanticsHubClientImpl.PLACEHOLDER_URN))) { + throw new IllegalStateException( + "Configuration value for 'semanticsHub.modelJsonSchemaEndpoint' must contain the URL placeholder '" + + SemanticsHubClientImpl.PLACEHOLDER_URN + "'!"); + } + } + + private static String wrap(final String placeholderIdType) { + return "{" + placeholderIdType + "}"; } @Override public String getModelJsonSchema(final String urn) { final UriComponentsBuilder uriBuilder = UriComponentsBuilder.fromUriString(semanticsHubUrl); - uriBuilder.path("/models/").path(urn).path("/json-schema"); - - return restTemplate.getForObject(uriBuilder.build().toUri(), String.class); + final Map values = Map.of(PLACEHOLDER_URN, urn); + return restTemplate.getForObject(uriBuilder.build(values), String.class); } } diff --git a/irs-api/src/main/resources/application-local.yml b/irs-api/src/main/resources/application-local.yml index df5e83685a..bd800de50e 100644 --- a/irs-api/src/main/resources/application-local.yml +++ b/irs-api/src/main/resources/application-local.yml @@ -11,8 +11,8 @@ irs: failed: 0 * * * * * jobstore: ttl: - failedInHours: 1 - completedInHours: 1 + failed: PT1H + completed: PT1H spring: security: diff --git a/irs-api/src/main/resources/application.yml b/irs-api/src/main/resources/application.yml index e3592b9bf7..1896d23c98 100644 --- a/irs-api/src/main/resources/application.yml +++ b/irs-api/src/main/resources/application.yml @@ -65,6 +65,10 @@ springdoc: irs: apiUrl: "${IRS_API_URL:http://localhost:8080}" job: + callback: + timeout: + read: PT90S + connect: PT90S cleanup: scheduler: # ┌───────────── second (0-59) @@ -79,8 +83,8 @@ irs: failed: 0 0 * * * * # every hour jobstore: ttl: - failedInHours: 168 # 7 days - completedInHours: 168 # 7 days + failed: P7D # 7 days + completed: P7D # 7 days cron: expression: "*/10 * * * * ?" # every 10 seconds @@ -121,12 +125,19 @@ edc: request-ttl: ${EDC_SUBMODEL_REQUEST_TTL:PT10M} path: ${EDC_SUBMODEL_PATH:/submodel} urn-prefix: ${EDC_SUBMODEL_URN_PREFIX:/urn} + timeout: + read: PT90S + connect: PT90S digitalTwinRegistry: - url: "${DIGITALTWINREGISTRY_URL:}" + descriptorEndpoint: ${DIGITALTWINREGISTRY_DESCRIPTOR_URL:} # /{aasIdentifier} + shellLookupEndpoint: ${DIGITALTWINREGISTRY_SHELL_LOOKUP_URL:} # ?assetIds={assetIds} + timeout: + read: PT90S + connect: PT90S semanticsHub: - url: "${SEMANTICSHUB_URL:}" + modelJsonSchemaEndpoint: "${SEMANTICSHUB_URL:}" # /models/{urn}/json-schema cleanup: # ┌───────────── second (0-59) # │ ┌───────────── minute (0 - 59) @@ -138,7 +149,13 @@ semanticsHub: # │ │ │ │ │ │ scheduler: 0 0 23 * * * # every day at 23:00 defaultUrns: "${SEMANTICSHUB_DEFAULT_URNS:urn:bamm:io.catenax.serial_part_typization:1.0.0#SerialPartTypization}" + timeout: + read: PT90S + connect: PT90S bpdm: - url: "${BPDM_URL:}" + bpnEndpoint: "${BPDM_URL:}" # /api/catena/legal-entities/{idValue}?idType={idType} + timeout: + read: PT90S + connect: PT90S diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/aaswrapper/registry/domain/DigitalTwinRegistryClientImplTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/aaswrapper/registry/domain/DigitalTwinRegistryClientImplTest.java index 8d99b4df14..56043c49ea 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/aaswrapper/registry/domain/DigitalTwinRegistryClientImplTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/aaswrapper/registry/domain/DigitalTwinRegistryClientImplTest.java @@ -50,7 +50,7 @@ class DigitalTwinRegistryClientImplTest { private final OutboundMeterRegistryService meterRegistry = mock(OutboundMeterRegistryService.class); private final DigitalTwinRegistryClientImpl digitalTwinRegistryClient = new DigitalTwinRegistryClientImpl( - restTemplate, "url", meterRegistry); + restTemplate, "url/{aasIdentifier}", "url/{assetIds}", meterRegistry); @Test void shouldCallExternalServiceOnceAndGetAssetAdministrationShellDescriptor() { diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/bpdm/BpdmClientImplTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/bpdm/BpdmClientImplTest.java index e6194bf2f5..689d50fb3b 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/bpdm/BpdmClientImplTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/bpdm/BpdmClientImplTest.java @@ -35,7 +35,7 @@ class BpdmClientImplTest { private final RestTemplate restTemplate = mock(RestTemplate.class); - private final BpdmClient bpdmClient = new BpdmClientImpl(restTemplate, "url"); + private final BpdmClient bpdmClient = new BpdmClientImpl(restTemplate, "url/{idType}/{partnerId}"); @Test void shouldCallExternalServiceOnceAndGetBusinessPartnerResponse() { diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/semanticshub/SemanticsHubClientImplTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/semanticshub/SemanticsHubClientImplTest.java index 8e1eea2aaa..ee00913555 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/semanticshub/SemanticsHubClientImplTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/semanticshub/SemanticsHubClientImplTest.java @@ -35,7 +35,7 @@ class SemanticsHubClientImplTest { private final RestTemplate restTemplate = mock(RestTemplate.class); - private final SemanticsHubClientImpl semanticsHubClient = new SemanticsHubClientImpl(restTemplate, "url"); + private final SemanticsHubClientImpl semanticsHubClient = new SemanticsHubClientImpl(restTemplate, "url/{urn}"); @Test void shouldCallExternalServiceOnceAndGetJsonSchema() { @@ -44,8 +44,7 @@ void shouldCallExternalServiceOnceAndGetJsonSchema() { final String resultJsonSchema = semanticsHubClient.getModelJsonSchema("urn"); - assertThat(resultJsonSchema).isNotBlank(); - assertThat(resultJsonSchema).contains("http://json-schema.org/draft-07/schema#"); + assertThat(resultJsonSchema).isNotBlank().contains("http://json-schema.org/draft-07/schema#"); verify(this.restTemplate, times(1)).getForObject(any(), eq(String.class)); } From 42e774a848f99113053ab8e3fbb5b6197d87a888 Mon Sep 17 00:00:00 2001 From: Jan Kreutzfeld Date: Tue, 20 Dec 2022 09:37:19 +0100 Subject: [PATCH 38/62] chore(helm):[TRI-368] Introduce config for dataref store --- .../irs/connector/job/JobException.java | 2 +- .../connector/job/JobInitiateResponse.java | 5 +- .../irs/connector/job/JobOrchestrator.java | 2 - .../irs/edc/EndpointDataReferenceStorage.java | 14 ++++-- irs-api/src/main/resources/application.yml | 3 ++ .../irs/edc/EdcCallbackControllerTest.java | 3 +- .../irs/edc/EdcSubmodelClientTest.java | 46 +++++++++++-------- .../irs/edc/SubmodelFacadeWiremockTest.java | 3 +- 8 files changed, 46 insertions(+), 32 deletions(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobException.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobException.java index fbd2a805c9..9a3832ec4a 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobException.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobException.java @@ -31,7 +31,7 @@ * Job Exception with embedded JobErrorDetails */ public class JobException extends RuntimeException { - private static final String DEFAULT_ERROR_MESSAGE = "Critical error occur!!"; + private static final String DEFAULT_ERROR_MESSAGE = "Critical error occurred!"; @Getter private final JobErrorDetails jobErrorDetails; diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobInitiateResponse.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobInitiateResponse.java index d15fddc1b8..743507b6ea 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobInitiateResponse.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobInitiateResponse.java @@ -21,13 +21,12 @@ ********************************************************************************/ package org.eclipse.tractusx.irs.connector.job; -import java.util.Map; - import lombok.Builder; import lombok.Value; +import org.eclipse.tractusx.irs.component.JobParameter; /** - * Represents the result of a {@link JobOrchestrator#startJob(Map)} operation. + * Represents the result of a {@link JobOrchestrator#startJob(String, JobParameter)} operation. */ @Value @Builder(toBuilder = true) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobOrchestrator.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobOrchestrator.java index 339faf3459..8fbf022c6d 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobOrchestrator.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobOrchestrator.java @@ -25,11 +25,9 @@ import java.time.ZoneOffset; import java.time.ZonedDateTime; -import java.time.temporal.ChronoUnit; import java.util.List; import java.util.Optional; import java.util.UUID; -import java.util.stream.Collectors; import java.util.stream.Stream; import lombok.extern.slf4j.Slf4j; diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/EndpointDataReferenceStorage.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/EndpointDataReferenceStorage.java index 1e8cb29e61..5f608c1287 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/EndpointDataReferenceStorage.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/EndpointDataReferenceStorage.java @@ -29,7 +29,7 @@ import java.util.Set; import java.util.concurrent.ConcurrentHashMap; -import lombok.Value; +import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Service; import org.eclipse.dataspaceconnector.spi.types.domain.edr.EndpointDataReference; @@ -40,9 +40,13 @@ @Service public class EndpointDataReferenceStorage { - private static final Duration STORAGE_DURATION = Duration.ofHours(1); - private final Map storageMap = new ConcurrentHashMap<>(); + private final Duration storageDuration; + + public EndpointDataReferenceStorage( + @Value("${edc.controlplane.datareference.storage.duration}") final Duration storageDuration) { + this.storageDuration = storageDuration; + } public void put(final String contractAgreementId, final EndpointDataReference dataReference) { storageMap.put(contractAgreementId, new ExpiringContainer(Instant.now(), dataReference)); @@ -56,7 +60,7 @@ private void cleanup() { final Set keys = new HashSet<>(storageMap.keySet()); keys.forEach(key -> { final Instant creationTimestamp = storageMap.get(key).getCreationTimestamp(); - if (Instant.now().isAfter(creationTimestamp.plus(STORAGE_DURATION))) { + if (Instant.now().isAfter(creationTimestamp.plus(storageDuration))) { storageMap.remove(key); } }); @@ -69,7 +73,7 @@ public Optional remove(final String contractAgreementId) /** * Stores the data reference with its creation date. */ - @Value + @lombok.Value private static class ExpiringContainer { private final Instant creationTimestamp; private final EndpointDataReference dataReference; diff --git a/irs-api/src/main/resources/application.yml b/irs-api/src/main/resources/application.yml index 1896d23c98..5b91cf4ce9 100644 --- a/irs-api/src/main/resources/application.yml +++ b/irs-api/src/main/resources/application.yml @@ -120,6 +120,9 @@ edc: api-key: header: ${EDC_API_KEY_HEADER:} secret: ${EDC_API_KEY_SECRET:} + datareference: + storage: + duration: PT1H submodel: request-ttl: ${EDC_SUBMODEL_REQUEST_TTL:PT10M} diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/EdcCallbackControllerTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/EdcCallbackControllerTest.java index f0e6eff543..778e9181f7 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/EdcCallbackControllerTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/EdcCallbackControllerTest.java @@ -23,6 +23,7 @@ import static org.assertj.core.api.Assertions.assertThat; +import java.time.Duration; import java.util.Map; import org.eclipse.dataspaceconnector.spi.types.domain.edr.EndpointDataReference; @@ -31,7 +32,7 @@ class EdcCallbackControllerTest { - private final EndpointDataReferenceStorage storage = new EndpointDataReferenceStorage(); + private final EndpointDataReferenceStorage storage = new EndpointDataReferenceStorage(Duration.ofMinutes(1)); private final EdcCallbackController testee = new EdcCallbackController(storage, new JsonUtil()); @Test diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/EdcSubmodelClientTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/EdcSubmodelClientTest.java index dfd1b3454b..397a3dc5a7 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/EdcSubmodelClientTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/EdcSubmodelClientTest.java @@ -76,7 +76,8 @@ class EdcSubmodelClientTest extends LocalTestDataConfigurationAware { private ContractNegotiationService contractNegotiationService; @Mock private EdcDataPlaneClient edcDataPlaneClient; - private final EndpointDataReferenceStorage endpointDataReferenceStorage = new EndpointDataReferenceStorage(); + private final EndpointDataReferenceStorage endpointDataReferenceStorage = new EndpointDataReferenceStorage( + Duration.ofMinutes(1)); private final JsonUtil jsonUtil = new JsonUtil(); private final ScheduledExecutorService scheduler = Executors.newSingleThreadScheduledExecutor(); @@ -159,8 +160,9 @@ void shouldReturnRelationshipsWhenRequestingWithCatenaXIdAndAssemblyPartRelation final String existingCatenaXId = "urn:uuid:15090ed9-0b5c-4761-ad71-c085cf84fa63"; prepareTestdata(existingCatenaXId, "_assemblyPartRelationship"); - final List submodelResponse = testee.getRelationships("http://localhost/" + existingCatenaXId + "/submodel", - RelationshipAspect.AssemblyPartRelationship).get(5, TimeUnit.SECONDS); + final List submodelResponse = testee.getRelationships( + "http://localhost/" + existingCatenaXId + "/submodel", RelationshipAspect.AssemblyPartRelationship) + .get(5, TimeUnit.SECONDS); assertThat(submodelResponse).isNotEmpty(); assertThat(submodelResponse.get(0).getCatenaXId().getGlobalAssetId()).isEqualTo(existingCatenaXId); @@ -172,8 +174,9 @@ void shouldReturnRelationshipsWhenRequestingWithCatenaXIdAndSingleLevelBomAsPlan final String catenaXId = "urn:uuid:aad27ddb-43aa-4e42-98c2-01e529ef127c"; prepareTestdata(catenaXId, "_singleLevelBomAsPlanned"); - final List submodelResponse = testee.getRelationships("http://localhost/" + catenaXId + "/submodel", - RelationshipAspect.SingleLevelBomAsPlanned).get(5, TimeUnit.SECONDS); + final List submodelResponse = testee.getRelationships( + "http://localhost/" + catenaXId + "/submodel", RelationshipAspect.SingleLevelBomAsPlanned) + .get(5, TimeUnit.SECONDS); assertThat(submodelResponse).isNotEmpty(); final List childIds = submodelResponse.stream() @@ -189,8 +192,9 @@ void shouldReturnEmptyRelationshipsWhenRequestingWithCatenaXIdAndSingleLevelUsag final String catenaXId = "urn:uuid:d7977805-ef52-43c4-9e1d-2f7f0e82c17c"; prepareTestdata(catenaXId, "_singleLevelUsageAsBuilt"); - final List submodelResponse = testee.getRelationships("http://localhost/" + catenaXId + "/submodel", - RelationshipAspect.SingleLevelUsageAsBuilt).get(5, TimeUnit.SECONDS); + final List submodelResponse = testee.getRelationships( + "http://localhost/" + catenaXId + "/submodel", RelationshipAspect.SingleLevelUsageAsBuilt) + .get(5, TimeUnit.SECONDS); assertThat(submodelResponse).isNotEmpty(); } @@ -201,8 +205,9 @@ void shouldReturnEmptyRelationshipsWhenRequestingWithNotExistingCatenaXIdAndAsse final String catenaXId = "urn:uuid:8a61c8db-561e-4db0-84ec-a693fc5ffdf6"; prepareTestdata(catenaXId, "_assemblyPartRelationship"); - final List submodelResponse = testee.getRelationships("http://localhost/" + catenaXId + "/submodel", - RelationshipAspect.AssemblyPartRelationship).get(5, TimeUnit.SECONDS); + final List submodelResponse = testee.getRelationships( + "http://localhost/" + catenaXId + "/submodel", RelationshipAspect.AssemblyPartRelationship) + .get(5, TimeUnit.SECONDS); assertThat(submodelResponse).isEmpty(); } @@ -212,8 +217,8 @@ void shouldReturnRawSerialPartTypizationWhenExisting() throws Exception { final String existingCatenaXId = "urn:uuid:4132cd2b-cbe7-4881-a6b4-39fdc31cca2b"; prepareTestdata(existingCatenaXId, "_serialPartTypization"); - final String submodelResponse = testee.getSubmodelRawPayload("http://localhost/" + existingCatenaXId + "/submodel") - .get(5, TimeUnit.SECONDS); + final String submodelResponse = testee.getSubmodelRawPayload( + "http://localhost/" + existingCatenaXId + "/submodel").get(5, TimeUnit.SECONDS); assertThat(submodelResponse).startsWith( "{\"localIdentifiers\":[{\"value\":\"BPNL00000003AYRE\",\"key\":\"manufacturerId\"}"); @@ -225,22 +230,27 @@ void shouldReturnSameRelationshipsForDifferentDirections() throws Exception { final BomLifecycle asBuilt = BomLifecycle.AS_BUILT; prepareTestdata(parentCatenaXId, "_assemblyPartRelationship"); - final List assemblyPartRelationships = testee.getRelationships("http://localhost/" + parentCatenaXId + "/submodel", + final List assemblyPartRelationships = testee.getRelationships( + "http://localhost/" + parentCatenaXId + "/submodel", RelationshipAspect.from(asBuilt, Direction.DOWNWARD)).get(5, TimeUnit.SECONDS); final GlobalAssetIdentification childCatenaXId = assemblyPartRelationships.stream() - .findAny() - .map(Relationship::getLinkedItem) - .map(LinkedItem::getChildCatenaXId).orElseThrow(); + .findAny() + .map(Relationship::getLinkedItem) + .map(LinkedItem::getChildCatenaXId) + .orElseThrow(); prepareTestdata(childCatenaXId.getGlobalAssetId(), "_singleLevelUsageAsBuilt"); - final List singleLevelUsageRelationships = testee.getRelationships("http://localhost/" + childCatenaXId.getGlobalAssetId() + "/submodel", + final List singleLevelUsageRelationships = testee.getRelationships( + "http://localhost/" + childCatenaXId.getGlobalAssetId() + "/submodel", RelationshipAspect.from(asBuilt, Direction.UPWARD)).get(5, TimeUnit.SECONDS); assertThat(assemblyPartRelationships).isNotEmpty(); assertThat(singleLevelUsageRelationships).isNotEmpty(); - assertThat(assemblyPartRelationships.get(0).getCatenaXId()).isEqualTo(singleLevelUsageRelationships.get(0).getCatenaXId()); - assertThat(assemblyPartRelationships.get(0).getLinkedItem().getChildCatenaXId()).isEqualTo(singleLevelUsageRelationships.get(0).getLinkedItem().getChildCatenaXId()); + assertThat(assemblyPartRelationships.get(0).getCatenaXId()).isEqualTo( + singleLevelUsageRelationships.get(0).getCatenaXId()); + assertThat(assemblyPartRelationships.get(0).getLinkedItem().getChildCatenaXId()).isEqualTo( + singleLevelUsageRelationships.get(0).getLinkedItem().getChildCatenaXId()); } private void prepareTestdata(final String catenaXId, final String submodelDataSuffix) diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/SubmodelFacadeWiremockTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/SubmodelFacadeWiremockTest.java index c86c28fe9d..9d5ef16929 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/SubmodelFacadeWiremockTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/edc/SubmodelFacadeWiremockTest.java @@ -61,7 +61,7 @@ class SubmodelFacadeWiremockTest { private EdcSubmodelClient submodelFacade; private final EdcConfiguration config = new EdcConfiguration(); - private final EndpointDataReferenceStorage storage = new EndpointDataReferenceStorage(); + private final EndpointDataReferenceStorage storage = new EndpointDataReferenceStorage(Duration.ofMinutes(1)); @BeforeEach void configureSystemUnderTest() { @@ -74,7 +74,6 @@ void configureSystemUnderTest() { config.getSubmodel().setPath("/submodel"); config.getSubmodel().setUrnPrefix("/urn"); - final RestTemplate restTemplate = new RestTemplate(); final AsyncPollingService pollingService = new AsyncPollingService(Clock.systemUTC(), Executors.newScheduledThreadPool(1)); From 0570a03d893680ece9a9e87300e6fcba21d1341a Mon Sep 17 00:00:00 2001 From: Jan Kreutzfeld Date: Tue, 20 Dec 2022 09:50:12 +0100 Subject: [PATCH 39/62] chore(helm):[TRI-368] Fix PMD issue --- .../aaswrapper/registry/domain/DigitalTwinRegistryClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/registry/domain/DigitalTwinRegistryClient.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/registry/domain/DigitalTwinRegistryClient.java index 7ad6d25c10..703235f2f8 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/registry/domain/DigitalTwinRegistryClient.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/aaswrapper/registry/domain/DigitalTwinRegistryClient.java @@ -124,7 +124,7 @@ class DigitalTwinRegistryClientImpl implements DigitalTwinRegistryClient { private void ensureUrlContainsPlaceholders(final String bpdmUrl, final String configPath, final String... placeholders) { if (StringUtils.isNotBlank(bpdmUrl)) { - for (var placeholder : placeholders) { + for (final var placeholder : placeholders) { require(bpdmUrl, configPath, placeholder); } } From 1658de9e4b27331a33e69f9b15fb345a2c1b9f4e Mon Sep 17 00:00:00 2001 From: Jan Kreutzfeld Date: Tue, 20 Dec 2022 10:07:43 +0100 Subject: [PATCH 40/62] chore(helm):[TRI-368] Revert toList collector --- .../eclipse/tractusx/irs/connector/job/JobOrchestrator.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobOrchestrator.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobOrchestrator.java index 8fbf022c6d..d844f42273 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobOrchestrator.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/JobOrchestrator.java @@ -28,6 +28,7 @@ import java.util.List; import java.util.Optional; import java.util.UUID; +import java.util.stream.Collectors; import java.util.stream.Stream; import lombok.extern.slf4j.Slf4j; @@ -265,7 +266,7 @@ private void publishJobProcessingFinishedEventIfFinished(final String jobId) { } private long startTransfers(final MultiTransferJob job, final Stream dataRequests) /* throws JobErrorDetails */ { - return dataRequests.map(r -> startTransfer(job, r)).count(); + return dataRequests.map(r -> startTransfer(job, r)).collect(Collectors.counting()); } private TransferInitiateResponse startTransfer(final MultiTransferJob job, From 22ad9bc26da8fd9c4c7d7853434bd11d8644f496 Mon Sep 17 00:00:00 2001 From: Adam Bugajewski Date: Tue, 20 Dec 2022 10:23:39 +0100 Subject: [PATCH 41/62] chore(api):TRI-996 IRS API refactoring jobState -> state --- CHANGELOG.md | 1 + api/irs-v1.0.yaml | 2 +- .../irs/controllers/IrsController.java | 6 +++-- .../services/IIrsItemGraphQueryService.java | 3 ++- .../services/IrsItemGraphQueryService.java | 10 ++++++-- .../irs/controllers/IrsControllerTest.java | 4 ++-- .../IrsItemGraphQueryServiceTest.java | 23 ++++++++++++++++++- 7 files changed, 40 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4a187bb7c..6dc8ac3582 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Changed - Change 'jobParameter' to 'parameter' in GET calls in IRS API +- Change 'jobState' to 'state' request parameter in GET call for jobs by state, 'jobState' is now deprecated ### Known knowns - PLACEHOLDER REMOVE IF EMPTY: risks that were introduced or discovered in the release and are known but not resolved diff --git a/api/irs-v1.0.yaml b/api/irs-v1.0.yaml index aba4886ba4..7d073518ef 100644 --- a/api/irs-v1.0.yaml +++ b/api/irs-v1.0.yaml @@ -18,7 +18,7 @@ paths: - description: Requested job states. explode: false in: query - name: jobStates + name: states required: false schema: type: array diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/controllers/IrsController.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/controllers/IrsController.java index 5c9ba9af82..bc40426fe5 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/controllers/IrsController.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/controllers/IrsController.java @@ -252,12 +252,14 @@ public Job cancelJobByJobId( @IrsTimer("getjobbystate") @GetMapping("/jobs") @PreAuthorize("hasAuthority('view_irs')") - public PageResult getJobsByJobState( + public PageResult getJobsByState( @Valid @ParameterObject @Parameter(description = "Requested job states.", in = QUERY, explode = Explode.FALSE, array = @ArraySchema(schema = @Schema(implementation = JobState.class), maxItems = Integer.MAX_VALUE)) + @RequestParam(value = "states", required = false, defaultValue = "") final List states, + @Parameter(hidden = true) @RequestParam(value = "jobStates", required = false, defaultValue = "") final List jobStates, @ParameterObject final Pageable pageable) { - return itemJobService.getJobsByJobState(jobStates, pageable); + return itemJobService.getJobsByState(states, jobStates, pageable); } } diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/services/IIrsItemGraphQueryService.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/services/IIrsItemGraphQueryService.java index cdfa2ca988..77a567173f 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/services/IIrsItemGraphQueryService.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/services/IIrsItemGraphQueryService.java @@ -40,7 +40,8 @@ public interface IIrsItemGraphQueryService { JobHandle registerItemJob(@NonNull RegisterJob request); - PageResult getJobsByJobState(@NonNull List jobStates, Pageable pageable); + PageResult getJobsByState(@NonNull List states, Pageable pageable); + PageResult getJobsByState(@NonNull List states, @NonNull List jobStates, Pageable pageable); Job cancelJobById(@NonNull UUID jobId); diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryService.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryService.java index ecb48107f6..e5267f48cb 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryService.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryService.java @@ -91,8 +91,8 @@ public class IrsItemGraphQueryService implements IIrsItemGraphQueryService { private final MeterRegistryService meterRegistryService; @Override - public PageResult getJobsByJobState(final @NonNull List jobStates, final Pageable pageable) { - final List jobs = jobStates.isEmpty() ? jobStore.findAll() : jobStore.findByStates(jobStates); + public PageResult getJobsByState(final @NonNull List states, final Pageable pageable) { + final List jobs = states.isEmpty() ? jobStore.findAll() : jobStore.findByStates(states); final List jobStatusResults = jobs.stream() .map(job -> JobStatusResult.builder() .id(job.getJob().getId()) @@ -105,6 +105,12 @@ public PageResult getJobsByJobState(final @NonNull List jobStates, fin return new PageResult(paginateAndSortResults(pageable, jobStatusResults)); } + @Override + public PageResult getJobsByState(@NonNull final List states, @NonNull final List jobStates, + final Pageable pageable) { + return getJobsByState(states.isEmpty() ? jobStates : states, pageable); + } + private PagedListHolder paginateAndSortResults(final Pageable pageable, final List results) { final PagedListHolder pageListHolder = new PagedListHolder<>(new ArrayList<>(results)); diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/controllers/IrsControllerTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/controllers/IrsControllerTest.java index 02646fee9a..07d5d8382a 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/controllers/IrsControllerTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/controllers/IrsControllerTest.java @@ -128,7 +128,7 @@ void shouldReturnBadRequestWhenRegisterJobBodyNotValid(final RegisterJob registe @Test @WithMockUser(authorities = "view_irs") - void getJobsByJobState() throws Exception { + void getJobsByState() throws Exception { final JobStatusResult returnedJob = JobStatusResult.builder() .id(UUID.randomUUID()) .state(JobState.COMPLETED) @@ -138,7 +138,7 @@ void getJobsByJobState() throws Exception { final String returnJobAsString = objectMapper.writeValueAsString(returnedJob); - when(service.getJobsByJobState(any(), any())).thenReturn(new PageResult(new PagedListHolder<>(List.of(returnedJob)))); + when(service.getJobsByState(any(), any(), any())).thenReturn(new PageResult(new PagedListHolder<>(List.of(returnedJob)))); this.mockMvc.perform(get("/irs/jobs")) .andExpect(status().isOk()) diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceTest.java index 506fdd4f7d..0a46a5cc21 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceTest.java @@ -25,6 +25,7 @@ import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertThrows; +import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import java.nio.charset.StandardCharsets; @@ -133,7 +134,7 @@ void shouldReturnFoundJobs() { final MultiTransferJob multiTransferJob = MultiTransferJob.builder().job(generate.fakeJob(JobState.COMPLETED)).build(); when(jobStore.findByStates(states)).thenReturn(List.of(multiTransferJob)); - final PageResult jobs = testee.getJobsByJobState(states, Pageable.ofSize(10)); + final PageResult jobs = testee.getJobsByState(states, Pageable.ofSize(10)); assertNotNull(jobs); assertThat(jobs.content()).hasSize(1); @@ -147,4 +148,24 @@ void shouldReturnFoundJobs() { assertThat(jobs.totalElements()).isEqualTo(1); } + @Test + void shouldTakeStatesInsteadOfDeprecatedParameter() { + final List states = List.of(JobState.COMPLETED); + final List jobStates = List.of(JobState.RUNNING); + + testee.getJobsByState(states, jobStates, Pageable.ofSize(10)); + + verify(jobStore).findByStates(states); + } + + @Test + void shouldTakeDeprecatedParameterWhenCorrectOneIsEmpty() { + final List states = List.of(); + final List jobStates = List.of(JobState.RUNNING); + + testee.getJobsByState(states, jobStates, Pageable.ofSize(10)); + + verify(jobStore).findByStates(jobStates); + } + } \ No newline at end of file From 4b23f7e13d93c062e6addaf6a6e2006991fbdc22 Mon Sep 17 00:00:00 2001 From: Adam Bugajewski Date: Tue, 20 Dec 2022 10:26:00 +0100 Subject: [PATCH 42/62] chore(api):TRI-996 IRS API refactoring jobState -> state - fix in changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6dc8ac3582..9f6f5ed3d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Changed - Change 'jobParameter' to 'parameter' in GET calls in IRS API -- Change 'jobState' to 'state' request parameter in GET call for jobs by state, 'jobState' is now deprecated +- Change 'jobStates' to 'states' request parameter in GET call for jobs by states, 'jobStates' is now deprecated ### Known knowns - PLACEHOLDER REMOVE IF EMPTY: risks that were introduced or discovered in the release and are known but not resolved From 080af5e430c417b7a8dc7903222538e602f4b805 Mon Sep 17 00:00:00 2001 From: Adam Bugajewski Date: Tue, 20 Dec 2022 11:06:11 +0100 Subject: [PATCH 43/62] chore(api):TRI-996 IRS API refactoring jobState -> state - add more unit tests --- .../IrsItemGraphQueryServiceTest.java | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceTest.java index 0a46a5cc21..92a24a952e 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceTest.java @@ -168,4 +168,24 @@ void shouldTakeDeprecatedParameterWhenCorrectOneIsEmpty() { verify(jobStore).findByStates(jobStates); } + @Test + void shouldTakeAllJobsWhenBothListEmpty() { + final List states = List.of(); + final List jobStates = List.of(); + + testee.getJobsByState(states, jobStates, Pageable.ofSize(10)); + + verify(jobStore).findAll(); + } + + @Test + void shouldTakeStatesInsteadOfEmptyDeprecatedParameter() { + final List states = List.of(JobState.COMPLETED); + final List jobStates = List.of(); + + testee.getJobsByState(states, jobStates, Pageable.ofSize(10)); + + verify(jobStore).findByStates(states); + } + } \ No newline at end of file From 084bf25a0f1bb50dee82c5f3e0d1e095f6caa7a3 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Tue, 20 Dec 2022 17:12:50 +0100 Subject: [PATCH 44/62] feat(workflows):[TRI-966] Add conversion to markdown --- .github/workflows/publish-documentation.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/publish-documentation.yaml b/.github/workflows/publish-documentation.yaml index 15f198f850..025c5b6242 100644 --- a/.github/workflows/publish-documentation.yaml +++ b/.github/workflows/publish-documentation.yaml @@ -42,6 +42,21 @@ jobs: run: | mvn -f docs/pom.xml --batch-mode generate-resources + - name: Install pandoc + run: | + sudo apt-get install pandoc + which pandoc + + - name: Convert HTML to markdown + env: + FILES: "administration/administration-guide" "arc42/full" "api-specification/api-specification" + run: | + cd docs/target/generated-docs + for file in ${FILES}; do \ + pandoc -f html -t markdown_strict --wrap=preserve "${file}.html" -o "${file}.md"; \ + sed -i 's/](#_/](#/' "${file}.md"; \ + sed -i -E '/\[.*\]\(#.*\)/ s/_/-/g' "${file}.md"; done + - name: GitHub Pages action uses: peaceiris/actions-gh-pages@v3.9.0 with: From 3496262a4a33d962a13dc5589a1560f4939e9492 Mon Sep 17 00:00:00 2001 From: Jan Kreutzfeld Date: Wed, 21 Dec 2022 12:49:38 +0100 Subject: [PATCH 45/62] chore(config):[TRI-368] Add comments for config documentation --- .../configmap-spring-app-config.yaml | 12 +- charts/irs/values.yaml | 7 +- .../docs/administration/configuration.adoc | 2 + .../administration/irs-spring-config.adoc | 8 ++ irs-api/src/main/resources/application.yml | 105 +++++++++--------- 5 files changed, 74 insertions(+), 60 deletions(-) create mode 100644 docs/src/docs/administration/irs-spring-config.adoc diff --git a/charts/irs/templates/configmap-spring-app-config.yaml b/charts/irs/templates/configmap-spring-app-config.yaml index 948000752a..ecca58eb9b 100644 --- a/charts/irs/templates/configmap-spring-app-config.yaml +++ b/charts/irs/templates/configmap-spring-app-config.yaml @@ -5,6 +5,8 @@ metadata: namespace: {{ .Values.namespace }} data: application.yaml: |- + # Config overriding Spring Boot configuration + {{- if not .Values.config.override }} server: trustedPort: {{ .Values.service.trustedPort }} @@ -57,9 +59,7 @@ data: request-ttl: {{ tpl .Values.edc.submodel.request.ttl . | default "PT10M" | quote }} path: {{ tpl (.Values.edc.submodel.path | default "/submodel") . | quote }} urn-prefix: {{ tpl (.Values.edc.submodel.urnprefix | default "/urn") . | quote }} - -{{- if .Values.config -}} - # additional config entries - {{- tpl (toYaml .Values.config) . | nindent 4 }} -{{- end }} - + {{- end }} + {{- if .Values.config.content }} + {{- tpl (toYaml .Values.config.content) . | nindent 4 }} + {{- end }} diff --git a/charts/irs/values.yaml b/charts/irs/values.yaml index 5edd09fff4..c2a7c5a6e8 100644 --- a/charts/irs/values.yaml +++ b/charts/irs/values.yaml @@ -142,7 +142,12 @@ edc: urnprefix: /urn config: - # add additional configuration values here (overrides IRS Spring application.yaml) + # If true, the config provided below will completely replace the configmap. + # In this case, you need to provide all required config values defined above yourself! + # If false, the custom config will just be appended to the configmap. + override: false + # Provide your custom configuration here (overrides IRS Spring application.yaml) + content: ####################### # Minio Configuration # diff --git a/docs/src/docs/administration/configuration.adoc b/docs/src/docs/administration/configuration.adoc index a8ee0eb7ae..cd18cd7941 100644 --- a/docs/src/docs/administration/configuration.adoc +++ b/docs/src/docs/administration/configuration.adoc @@ -8,6 +8,8 @@ You can define the URLs as well as most of the secrets yourself. The Keycloak, DAPS and Vault configuration / secrets depend on your setup and might need to be provided externally. +include::irs-spring-config.adoc[leveloffset=+1] + == Helm configuration IRS (values.yaml) [source,yaml] diff --git a/docs/src/docs/administration/irs-spring-config.adoc b/docs/src/docs/administration/irs-spring-config.adoc new file mode 100644 index 0000000000..0f8e98e7e0 --- /dev/null +++ b/docs/src/docs/administration/irs-spring-config.adoc @@ -0,0 +1,8 @@ += Spring Configuration + +The IRS application is configured using the Spring configuration mechanism. The main configuration file is the ``application.yaml``. + +[source,yaml] +---- +include::../../../../irs-api/src/main/resources/application.yml[] +---- \ No newline at end of file diff --git a/irs-api/src/main/resources/application.yml b/irs-api/src/main/resources/application.yml index 5b91cf4ce9..4f19972b64 100644 --- a/irs-api/src/main/resources/application.yml +++ b/irs-api/src/main/resources/application.yml @@ -1,6 +1,6 @@ server: - port: 8080 - trustedPort: ${SERVER_TRUSTED_PORT:} + port: 8080 # The port the main application API listens on + trustedPort: ${SERVER_TRUSTED_PORT:} # The port used for the unsecured, internal API - if empty, the main port is used spring: application: @@ -11,16 +11,16 @@ spring: registration: keycloak: authorization-grant-type: client_credentials - client-id: ${KEYCLOAK_OAUTH2_CLIENT_ID} - client-secret: ${KEYCLOAK_OAUTH2_CLIENT_SECRET} + client-id: ${KEYCLOAK_OAUTH2_CLIENT_ID} # OAuth2 client ID used to authenticate with the IAM + client-secret: ${KEYCLOAK_OAUTH2_CLIENT_SECRET} # OAuth2 client secret used to authenticate with the IAM provider: keycloak: - token-uri: ${KEYCLOAK_OAUTH2_CLIENT_TOKEN_URI:https://default} + token-uri: ${KEYCLOAK_OAUTH2_CLIENT_TOKEN_URI:https://default} # OAuth2 endpoint to request tokens using the client credentials resourceserver: jwt: - jwk-set-uri: ${KEYCLOAK_OAUTH2_JWK_SET_URI:https://default} + jwk-set-uri: ${KEYCLOAK_OAUTH2_JWK_SET_URI:https://default} # OAuth2 endpoint to request the JWK set -management: +management: # Spring management API config, see https://spring.io/guides/gs/centralized-configuration/ endpoints: web: exposure: @@ -55,21 +55,21 @@ logging: org.springframework: INFO org.eclipse.tractusx.irs: INFO -springdoc: +springdoc: # API docs configuration api-docs: path: /api/api-docs swagger-ui: path: /api/swagger-ui writer-with-order-by-keys: true -irs: - apiUrl: "${IRS_API_URL:http://localhost:8080}" +irs: # Application config + apiUrl: "${IRS_API_URL:http://localhost:8080}" # Public URL of the application, used in Swagger UI job: callback: timeout: - read: PT90S - connect: PT90S - cleanup: + read: PT90S # HTTP read timeout for the Job API callback + connect: PT90S # HTTP connect timeout for the Job API callback + cleanup: # Determines how often the JobStore is being cleaned up. Different schedulers for completed and failed jobs. scheduler: # ┌───────────── second (0-59) # │ ┌───────────── minute (0 - 59) @@ -82,65 +82,64 @@ irs: completed: 0 0 * * * * # every hour failed: 0 0 * * * * # every hour jobstore: - ttl: - failed: P7D # 7 days - completed: P7D # 7 days + ttl: # Determines how long jobs are stored in the respective state. After the TTL has expired, the job will be removed by the cleanup scheduler. + failed: P7D # ISO 8601 Duration + completed: P7D # ISO 8601 Duration cron: - expression: "*/10 * * * * ?" # every 10 seconds + expression: "*/10 * * * * ?" # Determines how often the number of stored jobs is updated in the metrics API. blobstore: - endpoint: "${MINIO_URL}" - accessKey: "${MINIO_ACCESS_KEY}" - secretKey: "${MINIO_SECRET_KEY}" - bucketName: irsbucket + endpoint: "${MINIO_URL}" # S3 compatible API endpoint (e.g. Minio) + accessKey: "${MINIO_ACCESS_KEY}" # S3 access key + secretKey: "${MINIO_SECRET_KEY}" # S3 secret key + bucketName: irsbucket # the name of the S3 bucket to be created / used by the IRS resilience4j: - retry: + retry: # REST client retry configuration configs: default: - maxAttempts: 3 - waitDuration: 10s - enableExponentialBackoff: true - exponentialBackoffMultiplier: 2 - ignore-exceptions: + maxAttempts: 3 # How often failed REST requests will be retried + waitDuration: 10s # How long to wait between each retry + enableExponentialBackoff: true # Whether subsequent retries will delay exponentially or not + exponentialBackoffMultiplier: 2 # Multiplier for the exponential delay + ignore-exceptions: # Do not retry on the listed exceptions - org.springframework.web.client.HttpClientErrorException.NotFound instances: registry: baseConfig: default - submodel: - baseConfig: default + edc: controlplane: - request-ttl: ${EDC_CONTROLPLANE_REQUEST_TTL:PT10M} + request-ttl: ${EDC_CONTROLPLANE_REQUEST_TTL:PT10M} # How long to wait for an async EDC negotiation request to finish, ISO 8601 Duration endpoint: - data: ${EDC_CONTROLPLANE_ENDPOINT_DATA:} - provider-suffix: ${EDC_CONTROLPLANE_PROVIDER_SUFFIX:/api/v1/ids/data} - catalog-limit: ${EDC_CONTROLPLANE_CATALOG_LIMIT:1000} + data: ${EDC_CONTROLPLANE_ENDPOINT_DATA:} # URL of the EDC consumer controlplane data endpoint + provider-suffix: ${EDC_CONTROLPLANE_PROVIDER_SUFFIX:/api/v1/ids/data} # Suffix to add to data requests to the EDC provider controlplane + catalog-limit: ${EDC_CONTROLPLANE_CATALOG_LIMIT:1000} # Max number of items to fetch from the EDC provider catalog api-key: - header: ${EDC_API_KEY_HEADER:} - secret: ${EDC_API_KEY_SECRET:} + header: ${EDC_API_KEY_HEADER:} # API header key to use in communication with the EDC consumer controlplane + secret: ${EDC_API_KEY_SECRET:} # API header secret to use in communication with the EDC consumer controlplane datareference: storage: - duration: PT1H + duration: PT1H # Time after which stored data references will be cleaned up, ISO 8601 Duration submodel: - request-ttl: ${EDC_SUBMODEL_REQUEST_TTL:PT10M} - path: ${EDC_SUBMODEL_PATH:/submodel} - urn-prefix: ${EDC_SUBMODEL_URN_PREFIX:/urn} + request-ttl: ${EDC_SUBMODEL_REQUEST_TTL:PT10M} # How long to wait for an async EDC submodel retrieval to finish, ISO 8601 Duration + path: ${EDC_SUBMODEL_PATH:/submodel} # The path to append to the submodel data reference endpoint + urn-prefix: ${EDC_SUBMODEL_URN_PREFIX:/urn} # A prefix used to identify URNs correctly in the submodel endpoint address timeout: - read: PT90S - connect: PT90S + read: PT90S # HTTP read timeout for the submodel client + connect: PT90S # HTTP connect timeout for the submodel client digitalTwinRegistry: - descriptorEndpoint: ${DIGITALTWINREGISTRY_DESCRIPTOR_URL:} # /{aasIdentifier} - shellLookupEndpoint: ${DIGITALTWINREGISTRY_SHELL_LOOKUP_URL:} # ?assetIds={assetIds} + descriptorEndpoint: ${DIGITALTWINREGISTRY_DESCRIPTOR_URL:} # The endpoint to retrieve AAS descriptors from the DTR, must contain the placeholder {aasIdentifier} + shellLookupEndpoint: ${DIGITALTWINREGISTRY_SHELL_LOOKUP_URL:} # The endpoint to lookup shells from the DTR, must contain the placeholder {assetIds} timeout: - read: PT90S - connect: PT90S + read: PT90S # HTTP read timeout for the digital twin registry client + connect: PT90S # HTTP connect timeout for the digital twin registry client semanticsHub: - modelJsonSchemaEndpoint: "${SEMANTICSHUB_URL:}" # /models/{urn}/json-schema + modelJsonSchemaEndpoint: "${SEMANTICSHUB_URL:}" # The endpoint to retrieve the json schema of a model, must contain the placeholder {urn} cleanup: # ┌───────────── second (0-59) # │ ┌───────────── minute (0 - 59) @@ -150,15 +149,15 @@ semanticsHub: # │ │ │ │ │ ┌───────────── day of the week (0 - 7) # │ │ │ │ │ │ (or MON-SUN -- 0 or 7 is Sunday) # │ │ │ │ │ │ - scheduler: 0 0 23 * * * # every day at 23:00 - defaultUrns: "${SEMANTICSHUB_DEFAULT_URNS:urn:bamm:io.catenax.serial_part_typization:1.0.0#SerialPartTypization}" + scheduler: 0 0 23 * * * # How often to clear the semantic model cache + defaultUrns: "${SEMANTICSHUB_DEFAULT_URNS:urn:bamm:io.catenax.serial_part_typization:1.0.0#SerialPartTypization}" # IDs of models to cache at IRS startup timeout: - read: PT90S - connect: PT90S + read: PT90S # HTTP read timeout for the semantic hub client + connect: PT90S # HTTP connect timeout for the semantic hub client bpdm: - bpnEndpoint: "${BPDM_URL:}" # /api/catena/legal-entities/{idValue}?idType={idType} + bpnEndpoint: "${BPDM_URL:}" # Endpoint to resolve BPNs, must contain the placeholders {idValue} and {idType} timeout: - read: PT90S - connect: PT90S + read: PT90S # HTTP read timeout for the bpdm client + connect: PT90S # HTTP connect timeout for the bpdm client From d9f8da03130f5770fb14e2a24d0a81ec25c35098 Mon Sep 17 00:00:00 2001 From: Jan Kreutzfeld Date: Wed, 21 Dec 2022 13:42:44 +0100 Subject: [PATCH 46/62] chore(config):[TRI-368] Make oAuth2 client configurable --- .../irs/configuration/RestTemplateConfig.java | 20 ++++++++++--------- irs-api/src/main/resources/application.yml | 3 +++ 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/RestTemplateConfig.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/RestTemplateConfig.java index 0ca4ee81c1..e693ba0f2d 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/RestTemplateConfig.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/RestTemplateConfig.java @@ -63,14 +63,13 @@ public class RestTemplateConfig { public static final String SEMHUB_REST_TEMPLATE = "oAuthRestTemplate"; public static final String NO_ERROR_REST_TEMPLATE = "noErrorRestTemplate"; public static final String EDC_REST_TEMPLATE = "edcRestTemplate"; - private static final String CLIENT_REGISTRATION_ID = "keycloak"; private final OAuth2AuthorizedClientService oAuth2AuthorizedClientService; private final ClientRegistrationRepository clientRegistrationRepository; private RestTemplate oAuthRestTemplate(final RestTemplateBuilder restTemplateBuilder, final Duration readTimeout, - final Duration connectTimeout) { - final var clientRegistration = clientRegistrationRepository.findByRegistrationId(CLIENT_REGISTRATION_ID); + final Duration connectTimeout, final String clientRegistrationId) { + final var clientRegistration = clientRegistrationRepository.findByRegistrationId(clientRegistrationId); return restTemplateBuilder.additionalInterceptors( new OAuthClientCredentialsRestTemplateInterceptor(authorizedClientManager(), clientRegistration)) @@ -82,22 +81,25 @@ private RestTemplate oAuthRestTemplate(final RestTemplateBuilder restTemplateBui @Bean(DTR_REST_TEMPLATE) /* package */ RestTemplate digitalTwinRegistryRestTemplate(final RestTemplateBuilder restTemplateBuilder, @Value("${digitalTwinRegistry.timeout.read}") final Duration readTimeout, - @Value("${digitalTwinRegistry.timeout.connect}") final Duration connectTimeout) { - return oAuthRestTemplate(restTemplateBuilder, readTimeout, connectTimeout); + @Value("${digitalTwinRegistry.timeout.connect}") final Duration connectTimeout, + @Value("${digitalTwinRegistry.oAuthClientId}") final String clientRegistrationId) { + return oAuthRestTemplate(restTemplateBuilder, readTimeout, connectTimeout, clientRegistrationId); } @Bean(SEMHUB_REST_TEMPLATE) /* package */ RestTemplate semanticHubRestTemplate(final RestTemplateBuilder restTemplateBuilder, @Value("${semanticsHub.timeout.read}") final Duration readTimeout, - @Value("${semanticsHub.timeout.connect}") final Duration connectTimeout) { - return oAuthRestTemplate(restTemplateBuilder, readTimeout, connectTimeout); + @Value("${semanticsHub.timeout.connect}") final Duration connectTimeout, + @Value("${semanticsHub.oAuthClientId}") final String clientRegistrationId) { + return oAuthRestTemplate(restTemplateBuilder, readTimeout, connectTimeout, clientRegistrationId); } @Bean(BPDM_REST_TEMPLATE) /* package */ RestTemplate bpdmRestTemplate(final RestTemplateBuilder restTemplateBuilder, @Value("${bpdm.timeout.read}") final Duration readTimeout, - @Value("${bpdm.timeout.connect}") final Duration connectTimeout) { - return oAuthRestTemplate(restTemplateBuilder, readTimeout, connectTimeout); + @Value("${bpdm.timeout.connect}") final Duration connectTimeout, + @Value("${bpdm.oAuthClientId}") final String clientRegistrationId) { + return oAuthRestTemplate(restTemplateBuilder, readTimeout, connectTimeout, clientRegistrationId); } @Bean(NO_ERROR_REST_TEMPLATE) diff --git a/irs-api/src/main/resources/application.yml b/irs-api/src/main/resources/application.yml index 4f19972b64..60f9e8a5e2 100644 --- a/irs-api/src/main/resources/application.yml +++ b/irs-api/src/main/resources/application.yml @@ -134,6 +134,7 @@ edc: digitalTwinRegistry: descriptorEndpoint: ${DIGITALTWINREGISTRY_DESCRIPTOR_URL:} # The endpoint to retrieve AAS descriptors from the DTR, must contain the placeholder {aasIdentifier} shellLookupEndpoint: ${DIGITALTWINREGISTRY_SHELL_LOOKUP_URL:} # The endpoint to lookup shells from the DTR, must contain the placeholder {assetIds} + oAuthClientId: keycloak # ID of the OAuth2 client registration to use, see config spring.security.oauth2.client timeout: read: PT90S # HTTP read timeout for the digital twin registry client connect: PT90S # HTTP connect timeout for the digital twin registry client @@ -151,12 +152,14 @@ semanticsHub: # │ │ │ │ │ │ scheduler: 0 0 23 * * * # How often to clear the semantic model cache defaultUrns: "${SEMANTICSHUB_DEFAULT_URNS:urn:bamm:io.catenax.serial_part_typization:1.0.0#SerialPartTypization}" # IDs of models to cache at IRS startup + oAuthClientId: keycloak # ID of the OAuth2 client registration to use, see config spring.security.oauth2.client timeout: read: PT90S # HTTP read timeout for the semantic hub client connect: PT90S # HTTP connect timeout for the semantic hub client bpdm: bpnEndpoint: "${BPDM_URL:}" # Endpoint to resolve BPNs, must contain the placeholders {idValue} and {idType} + oAuthClientId: keycloak # ID of the OAuth2 client registration to use, see config spring.security.oauth2.client timeout: read: PT90S # HTTP read timeout for the bpdm client connect: PT90S # HTTP connect timeout for the bpdm client From ed337db743903d64112d63616bcbd839f4628241 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Wed, 21 Dec 2022 13:45:32 +0100 Subject: [PATCH 47/62] chore(cucumber):[-] Add missing fields for value type and summary type --- .../irs/cucumber/E2ETestStepDefinitions.java | 26 ++++++++++++++----- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/cucumber-tests/src/test/java/org/eclipse/tractusx/irs/cucumber/E2ETestStepDefinitions.java b/cucumber-tests/src/test/java/org/eclipse/tractusx/irs/cucumber/E2ETestStepDefinitions.java index 2b1535bf92..d51dd92c2f 100644 --- a/cucumber-tests/src/test/java/org/eclipse/tractusx/irs/cucumber/E2ETestStepDefinitions.java +++ b/cucumber-tests/src/test/java/org/eclipse/tractusx/irs/cucumber/E2ETestStepDefinitions.java @@ -172,13 +172,25 @@ public void iCheckIfTheJobHasStatusWithinMinutes(String status, int maxWaitTime) } @And("I check, if number of {string} equals to {string}") - public void iCheckIfNumberOfEqualsTo(String valueType, String arg1) { - if ("tombstones".equals(valueType)) { - assertThat(completedJob.getTombstones()).hasSize( - completedJob.getJob().getSummary().getAsyncFetchedItems().getFailed()); - } else { - throw new PendingException(); - } + public void iCheckIfNumberOfEqualsTo(String valueType, String summaryType) { + int nrOfValueType = switch (valueType) { + case "tombstones" -> completedJob.getTombstones().size(); + case "submodels" -> completedJob.getSubmodels().size(); + case "shells" -> completedJob.getShells().size(); + case "relationships" -> completedJob.getRelationships().size(); + case "bpns" -> completedJob.getBpns().size(); + default -> throw new PendingException(String.format("Type: '%s' not supported.", valueType)); + }; + int nrOfItemsInSummary = switch (summaryType) { + case "summary/asyncFetchedItems/running" -> + completedJob.getJob().getSummary().getAsyncFetchedItems().getRunning(); + case "summary/asyncFetchedItems/completed" -> + completedJob.getJob().getSummary().getAsyncFetchedItems().getCompleted(); + case "summary/asyncFetchedItems/failed" -> + completedJob.getJob().getSummary().getAsyncFetchedItems().getFailed(); + default -> throw new PendingException(String.format("Type: '%s' not supported.", summaryType)); + }; + assertThat(nrOfValueType).isEqualTo(nrOfItemsInSummary); } @And("I check, if summary contains {int} completed and {int} failed items") From 3bab04178892139be60686f2aef672e1f6aa04f4 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Wed, 21 Dec 2022 14:13:09 +0100 Subject: [PATCH 48/62] feat(workflows):[TRI-966] Fix env var --- .github/workflows/publish-documentation.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/publish-documentation.yaml b/.github/workflows/publish-documentation.yaml index 025c5b6242..7b97561468 100644 --- a/.github/workflows/publish-documentation.yaml +++ b/.github/workflows/publish-documentation.yaml @@ -49,7 +49,7 @@ jobs: - name: Convert HTML to markdown env: - FILES: "administration/administration-guide" "arc42/full" "api-specification/api-specification" + FILES: "administration/administration-guide arc42/full api-specification/api-specification" run: | cd docs/target/generated-docs for file in ${FILES}; do \ @@ -63,4 +63,3 @@ jobs: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: "./docs/target/generated-docs" destination_dir: "docs" - From 31424001a5efb617cb9c0f27d0088b798ac5cad9 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Wed, 21 Dec 2022 14:19:55 +0100 Subject: [PATCH 49/62] feat(docs):[TRI-966] Adjust xref --- docs/src/docs/index.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/docs/index.adoc b/docs/src/docs/index.adoc index 9acef69c4e..6cfefe4445 100644 --- a/docs/src/docs/index.adoc +++ b/docs/src/docs/index.adoc @@ -1,7 +1,7 @@ = Item Relationship Service Documentation == Administration Guide -xref:administration/administration-guide.adoc[] +xref:administration/administration-guide.adoc[Administration Guide] == API-Documentation xref:api-specification/api-specification.adoc[OpenApi specification] From fdaa61656df650e612d2e96b27e465a997d90e82 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Wed, 21 Dec 2022 14:21:28 +0100 Subject: [PATCH 50/62] Revert "feat(docs):[TRI-966] Adjust xref" This reverts commit 31424001a5efb617cb9c0f27d0088b798ac5cad9. --- docs/src/docs/index.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/docs/index.adoc b/docs/src/docs/index.adoc index 6cfefe4445..9acef69c4e 100644 --- a/docs/src/docs/index.adoc +++ b/docs/src/docs/index.adoc @@ -1,7 +1,7 @@ = Item Relationship Service Documentation == Administration Guide -xref:administration/administration-guide.adoc[Administration Guide] +xref:administration/administration-guide.adoc[] == API-Documentation xref:api-specification/api-specification.adoc[OpenApi specification] From af0eff13a9f617f0908175eb730794780aee4620 Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Wed, 21 Dec 2022 14:41:08 +0100 Subject: [PATCH 51/62] feat(workflows):[TRI-966] Add jdk 17 --- .github/workflows/publish-documentation.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/publish-documentation.yaml b/.github/workflows/publish-documentation.yaml index 7b97561468..fabd97cb73 100644 --- a/.github/workflows/publish-documentation.yaml +++ b/.github/workflows/publish-documentation.yaml @@ -24,6 +24,12 @@ jobs: - name: Setup Graphviz uses: ts-graphviz/setup-graphviz@v1 + - name: Set up JDK 17 + uses: actions/setup-java@v3 + with: + java-version: '17' + distribution: 'temurin' + - name: Cache maven packages uses: actions/cache@v3 with: From d49e5dbbdd7a05ebe5fa0e03a4db5f7a10b3d132 Mon Sep 17 00:00:00 2001 From: Jan Kreutzfeld Date: Wed, 21 Dec 2022 15:21:17 +0100 Subject: [PATCH 52/62] chore(config):[TRI-368] Fix placeholder naming --- charts/irs/values.yaml | 2 +- irs-api/src/main/resources/application.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/irs/values.yaml b/charts/irs/values.yaml index c2a7c5a6e8..cbeae490b1 100644 --- a/charts/irs/values.yaml +++ b/charts/irs/values.yaml @@ -112,7 +112,7 @@ semanticsHub: # ,urn:bamm:com.catenax.assembly_part_relationship:1.0.0#AssemblyPartRelationship bpdm: url: https:// - bpnEndpoint: "{{ tpl .Values.bpdm.url . }}/api/catena/legal-entities/{idValue}?idType={idType}" + bpnEndpoint: "{{ tpl .Values.bpdm.url . }}/api/catena/legal-entities/{partnerId}?idType={idType}" minioUser: minioPassword: minioUrl: "http://{{ .Release.Name }}-minio:9000" diff --git a/irs-api/src/main/resources/application.yml b/irs-api/src/main/resources/application.yml index 60f9e8a5e2..85a121efab 100644 --- a/irs-api/src/main/resources/application.yml +++ b/irs-api/src/main/resources/application.yml @@ -158,7 +158,7 @@ semanticsHub: connect: PT90S # HTTP connect timeout for the semantic hub client bpdm: - bpnEndpoint: "${BPDM_URL:}" # Endpoint to resolve BPNs, must contain the placeholders {idValue} and {idType} + bpnEndpoint: "${BPDM_URL:}" # Endpoint to resolve BPNs, must contain the placeholders {partnerId} and {idType} oAuthClientId: keycloak # ID of the OAuth2 client registration to use, see config spring.security.oauth2.client timeout: read: PT90S # HTTP read timeout for the bpdm client From d8ea008d3885eb458657e7336bbafc9883cf85ef Mon Sep 17 00:00:00 2001 From: Jaro Hartmann Date: Wed, 21 Dec 2022 15:30:46 +0100 Subject: [PATCH 53/62] fix(workflows):[-] Add allow-unrelated-histories --- .github/workflows/synch-env-branch.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/synch-env-branch.yml b/.github/workflows/synch-env-branch.yml index 384355e065..f5b87320d0 100644 --- a/.github/workflows/synch-env-branch.yml +++ b/.github/workflows/synch-env-branch.yml @@ -22,7 +22,7 @@ jobs: git fetch --no-tags --progress git checkout --progress -b catena-x-environments origin/catena-x-environments git fetch origin --recurse-submodules=no --progress --prune - git merge origin/main -v + git merge origin/main -v --allow-unrelated-histories git push env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 14e37b163334a80910ca37a336eb52b6edc7957d Mon Sep 17 00:00:00 2001 From: Jan Kreutzfeld Date: Wed, 21 Dec 2022 15:32:15 +0100 Subject: [PATCH 54/62] chore(config):[TRI-368] Add changelog info --- CHANGELOG.md | 2 ++ charts/irs/CHANGELOG.md | 2 ++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4a187bb7c..326ad9126d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Changed - Change 'jobParameter' to 'parameter' in GET calls in IRS API +- REST clients for DTR, SemHub and BPDM now use their own RestTemplates and configuration +- application.yaml received some documentation ### Known knowns - PLACEHOLDER REMOVE IF EMPTY: risks that were introduced or discovered in the release and are known but not resolved diff --git a/charts/irs/CHANGELOG.md b/charts/irs/CHANGELOG.md index b4d3047b84..eaa2d27963 100644 --- a/charts/irs/CHANGELOG.md +++ b/charts/irs/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Changed +- IRS configuration is now provided via ConfigMap instead of ENVs. This can be overwritten completely in the values.yaml. This is backward compatible with the previous configuration layout. ## [4.0.0] - 2022-12-09 ### Changed From 2207a412d6e934258795fe780440de42a6a7e3aa Mon Sep 17 00:00:00 2001 From: Adam Bugajewski Date: Thu, 22 Dec 2022 21:15:11 +0100 Subject: [PATCH 55/62] fix(api):TRI-1016 Review and fix new SonarCloud findings --- .../job/delegate/SubmodelDelegate.java | 3 +-- .../irs/configuration/MinioHealthIndicator.java | 4 +--- .../configuration/TrustedEndpointsFilter.java | 8 ++++---- .../tractusx/irs/connector/job/BaseJobStore.java | 10 +++++----- .../irs/connector/job/PersistentJobStore.java | 2 +- .../irs/controllers/IrsExceptionHandler.java | 7 +++---- .../irs/edc/AssemblyPartRelationship.java | 3 +-- .../tractusx/irs/edc/EdcSubmodelFacade.java | 8 ++++---- .../irs/edc/SingleLevelBomAsPlanned.java | 3 +-- .../irs/edc/SingleLevelUsageAsBuilt.java | 3 +-- .../irs/persistence/MinioBlobPersistence.java | 3 +-- .../irs/services/SecurityHelperService.java | 4 ++-- .../job/JobProcessingEventListenerTest.java | 8 ++++---- .../tractusx/irs/bpdm/BpdmFacadeTest.java | 2 +- .../irs/connector/job/JobOrchestratorTest.java | 16 ++++++++-------- .../services/IrsItemGraphQueryServiceTest.java | 2 +- .../AssetAdministrationShellDescriptor.java | 2 +- 17 files changed, 40 insertions(+), 48 deletions(-) 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 78280dcd5a..18bdfb298d 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 @@ -24,7 +24,6 @@ import java.util.ArrayList; import java.util.List; import java.util.Map; -import java.util.stream.Collectors; import io.github.resilience4j.retry.RetryRegistry; import lombok.extern.slf4j.Slf4j; @@ -79,7 +78,7 @@ public ItemContainer process(final ItemContainer.ItemContainerBuilder itemContai log.info("Retrieved {} SubmodelDescriptor for itemId {}", aasSubmodelDescriptors.size(), itemId); final List filteredSubmodelDescriptorsByAspectType = shell.filterDescriptorsByAspectTypes( - jobData.getAspects().stream().map(AspectType::toString).collect(Collectors.toList())); + jobData.getAspects().stream().map(AspectType::toString).toList()); if (jobData.isCollectAspects()) { log.info("Collecting Submodels."); diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/MinioHealthIndicator.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/MinioHealthIndicator.java index 64a12a0fb2..45e3fc6c9f 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/MinioHealthIndicator.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/MinioHealthIndicator.java @@ -68,9 +68,8 @@ public Health health() { * @return true if bucket exists, false otherwise */ private boolean thereIsMinioConnection() { - if (blobPersistence instanceof MinioBlobPersistence) { + if (blobPersistence instanceof MinioBlobPersistence minioBlobPersistence) { try { - final MinioBlobPersistence minioBlobPersistence = (MinioBlobPersistence) blobPersistence; minioBlobPersistence.createBucketIfNotExists(blobstoreConfiguration.getBucketName()); if (minioBlobPersistence.bucketExists(blobstoreConfiguration.getBucketName())) { @@ -80,7 +79,6 @@ private boolean thereIsMinioConnection() { log.error("Lost connection to Minio", e); } } - return false; } } diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/TrustedEndpointsFilter.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/TrustedEndpointsFilter.java index 4a1465cdd8..24c3b8333b 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/TrustedEndpointsFilter.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/configuration/TrustedEndpointsFilter.java @@ -59,8 +59,8 @@ public void doFilter(final ServletRequest servletRequest, final ServletResponse if (isRequestForTrustedEndpoint(servletRequest) && servletRequest.getLocalPort() != trustedPortNum) { log.warn("denying request for trusted endpoint on untrusted port"); - if (servletResponse instanceof HttpServletResponseWrapper) { - ((HttpServletResponseWrapper) servletResponse).setStatus(HttpServletResponse.SC_NOT_FOUND); + if (servletResponse instanceof HttpServletResponseWrapper httpServletResponse) { + httpServletResponse.setStatus(HttpServletResponse.SC_NOT_FOUND); } servletResponse.getOutputStream().close(); return; @@ -68,8 +68,8 @@ public void doFilter(final ServletRequest servletRequest, final ServletResponse if (!isRequestForTrustedEndpoint(servletRequest) && servletRequest.getLocalPort() == trustedPortNum) { log.warn("denying request for untrusted endpoint on trusted port"); - if (servletResponse instanceof HttpServletResponseWrapper) { - ((HttpServletResponseWrapper) servletResponse).setStatus(HttpServletResponse.SC_NOT_FOUND); + if (servletResponse instanceof HttpServletResponseWrapper httpServletResponse) { + httpServletResponse.setStatus(HttpServletResponse.SC_NOT_FOUND); } servletResponse.getOutputStream().close(); return; 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 d6e08a9633..0edce4aea2 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 @@ -22,6 +22,7 @@ package org.eclipse.tractusx.irs.connector.job; import java.time.ZonedDateTime; +import java.util.ArrayList; import java.util.Collection; import java.util.List; import java.util.Optional; @@ -31,7 +32,6 @@ import java.util.function.Predicate; import java.util.function.Supplier; import java.util.function.UnaryOperator; -import java.util.stream.Collectors; import lombok.extern.slf4j.Slf4j; import org.eclipse.tractusx.irs.component.enums.JobState; @@ -73,7 +73,7 @@ public List findByStateAndCompletionDateOlderThan(final JobSta return readLock(() -> getAll().stream() .filter(hasState(jobState)) .filter(isCompletionDateBefore(dateTime)) - .collect(Collectors.toList())); + .toList()); } private Predicate hasState(final JobState jobState) { @@ -110,7 +110,7 @@ public void addTransferProcess(final String jobId, final String processId) { @Override public List findAll() { - return readLock(() -> getAll().stream().collect(Collectors.toList())); + return readLock(() -> new ArrayList<>(getAll())); } @Override @@ -120,7 +120,7 @@ public void completeTransferProcess(final String jobId, final TransferProcess pr final var remainingTransfers = job.getTransferProcessIds() .stream() .filter(id -> !id.equals(process.getId())) - .collect(Collectors.toList()); + .toList(); final var newJob = job.toBuilder() .clearTransferProcessIds() .transferProcessIds(remainingTransfers) @@ -159,7 +159,7 @@ public void markJobInError(final String jobId, @Nullable final String errorDetai @Override public List findByStates(final List jobStates) { - return readLock(() -> getAll().stream().filter(hasState(jobStates)).collect(Collectors.toList())); + return readLock(() -> getAll().stream().filter(hasState(jobStates)).toList()); } private Predicate hasState(final List jobStates) { diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/PersistentJobStore.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/PersistentJobStore.java index 878a42ca84..e4aa72942a 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/PersistentJobStore.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/connector/job/PersistentJobStore.java @@ -72,7 +72,7 @@ protected Optional get(final String jobId) { protected Collection getAll() { try { final Collection allBlobs = blobStore.findBlobByPrefix(JOB_PREFIX); - return allBlobs.stream().map(this::toJob).flatMap(Optional::stream).collect(Collectors.toList()); + return allBlobs.stream().map(this::toJob).flatMap(Optional::stream).toList(); } catch (BlobPersistenceException e) { log.error("Cannot search for jobs in blobstore", e); return Collections.emptyList(); diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/controllers/IrsExceptionHandler.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/controllers/IrsExceptionHandler.java index 0f30d785a1..06ddce4828 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/controllers/IrsExceptionHandler.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/controllers/IrsExceptionHandler.java @@ -24,7 +24,6 @@ import java.util.ArrayList; import java.util.List; import java.util.NoSuchElementException; -import java.util.stream.Collectors; import lombok.extern.slf4j.Slf4j; import org.eclipse.tractusx.irs.dtos.ErrorResponse; @@ -78,7 +77,7 @@ public ResponseEntity handleBindException(final BindException exc .getFieldErrors() .stream() .map(e -> e.getField() + ":" + e.getDefaultMessage()) - .collect(Collectors.toList()); + .toList(); return ResponseEntity.status(HttpStatus.BAD_REQUEST) .body(ErrorResponse.builder() @@ -92,8 +91,8 @@ public ResponseEntity handleBindException(final BindException exc public ResponseEntity handleMethodArgumentTypeMismatchException(final MethodArgumentTypeMismatchException exception) { log.info(exception.getClass().getName(), exception); - if (exception.getRootCause() instanceof IllegalArgumentException) { - return handleIllegalArgumentException((IllegalArgumentException) exception.getRootCause()); + if (exception.getRootCause() instanceof IllegalArgumentException illegalArgumentException) { + return handleIllegalArgumentException(illegalArgumentException); } return ResponseEntity.status(HttpStatus.BAD_REQUEST) diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/AssemblyPartRelationship.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/AssemblyPartRelationship.java index 853125f051..976b085d5a 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/AssemblyPartRelationship.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/AssemblyPartRelationship.java @@ -26,7 +26,6 @@ import java.util.List; import java.util.Optional; import java.util.Set; -import java.util.stream.Collectors; import lombok.AllArgsConstructor; import lombok.Data; @@ -55,7 +54,7 @@ class AssemblyPartRelationship extends RelationshipSubmodel { public List asRelationships() { return Optional.ofNullable(this.childParts).stream().flatMap(Collection::stream) .map(childData -> childData.toRelationship(this.catenaXId)) - .collect(Collectors.toList()); + .toList(); } /** diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/EdcSubmodelFacade.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/EdcSubmodelFacade.java index 024e589502..f62874b243 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/EdcSubmodelFacade.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/EdcSubmodelFacade.java @@ -51,8 +51,8 @@ public List getRelationships(final String submodelEndpointAddress, return Collections.emptyList(); } catch (ExecutionException e) { final Throwable cause = e.getCause(); - if (cause instanceof EdcClientException) { - throw (EdcClientException) cause; + if (cause instanceof EdcClientException exceptionCause) { + throw exceptionCause; } throw new EdcClientException(cause); } @@ -67,8 +67,8 @@ public String getSubmodelRawPayload(final String submodelEndpointAddress) throws return null; } catch (ExecutionException e) { final Throwable cause = e.getCause(); - if (cause instanceof EdcClientException) { - throw (EdcClientException) cause; + if (cause instanceof EdcClientException exceptionCause) { + throw exceptionCause; } throw new EdcClientException(cause); } diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/SingleLevelBomAsPlanned.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/SingleLevelBomAsPlanned.java index 365161c5d2..1b2d8bbefa 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/SingleLevelBomAsPlanned.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/SingleLevelBomAsPlanned.java @@ -26,7 +26,6 @@ import java.util.List; import java.util.Optional; import java.util.Set; -import java.util.stream.Collectors; import lombok.AllArgsConstructor; import lombok.Data; @@ -55,7 +54,7 @@ class SingleLevelBomAsPlanned extends RelationshipSubmodel { public List asRelationships() { return Optional.ofNullable(this.childParts).stream().flatMap(Collection::stream) .map(childData -> childData.toRelationship(this.catenaXId)) - .collect(Collectors.toList()); + .toList(); } /** diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/SingleLevelUsageAsBuilt.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/SingleLevelUsageAsBuilt.java index 4b1963ca78..e018cf7030 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/SingleLevelUsageAsBuilt.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/edc/SingleLevelUsageAsBuilt.java @@ -26,7 +26,6 @@ import java.util.List; import java.util.Optional; import java.util.Set; -import java.util.stream.Collectors; import lombok.AllArgsConstructor; import lombok.Data; @@ -55,7 +54,7 @@ class SingleLevelUsageAsBuilt extends RelationshipSubmodel { public List asRelationships() { return Optional.ofNullable(this.parentParts).stream().flatMap(Collection::stream) .map(parentData -> parentData.toRelationship(this.catenaXId)) - .collect(Collectors.toList()); + .toList(); } /** diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/persistence/MinioBlobPersistence.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/persistence/MinioBlobPersistence.java index fccfb062fb..da026417be 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/persistence/MinioBlobPersistence.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/persistence/MinioBlobPersistence.java @@ -28,7 +28,6 @@ import java.util.Collection; import java.util.List; import java.util.Optional; -import java.util.stream.Collectors; import java.util.stream.Stream; import java.util.stream.StreamSupport; @@ -175,7 +174,7 @@ public Collection findBlobByPrefix(final String prefix) { .flatMap(this::getItem) .map(Item::objectName) .flatMap(this::getBlobIfPresent) - .collect(Collectors.toList()); + .toList(); } @Override diff --git a/irs-api/src/main/java/org/eclipse/tractusx/irs/services/SecurityHelperService.java b/irs-api/src/main/java/org/eclipse/tractusx/irs/services/SecurityHelperService.java index 1e2e8e21f4..6c06923e8b 100644 --- a/irs-api/src/main/java/org/eclipse/tractusx/irs/services/SecurityHelperService.java +++ b/irs-api/src/main/java/org/eclipse/tractusx/irs/services/SecurityHelperService.java @@ -40,8 +40,8 @@ public String getClientIdClaim() { } private String getClaimOrUnknown(final String claimName, final Authentication authentication) { - if (authentication instanceof JwtAuthenticationToken) { - final Jwt token = ((JwtAuthenticationToken) authentication).getToken(); + if (authentication instanceof JwtAuthenticationToken jwtAuthenticationToken) { + final Jwt token = jwtAuthenticationToken.getToken(); return Optional.ofNullable(token.getClaim(claimName)).map(Object::toString).orElse(UNKNOWN); } diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/aaswrapper/job/JobProcessingEventListenerTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/aaswrapper/job/JobProcessingEventListenerTest.java index 5379f3a018..d7332bbe31 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/aaswrapper/job/JobProcessingEventListenerTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/aaswrapper/job/JobProcessingEventListenerTest.java @@ -42,7 +42,7 @@ void shouldCallCallbackUrlIfIsValidAndStateCompleted() throws URISyntaxException final String expectedCallbackUrl = "https://hostname.com/callback?id=" + jobId + "&state=" + jobState; // then - verify(this.restTemplate, times(1)).getForEntity(eq(new URI(expectedCallbackUrl)), eq(Void.class)); + verify(this.restTemplate, times(1)).getForEntity(new URI(expectedCallbackUrl), Void.class); } @Test @@ -58,7 +58,7 @@ void shouldCallCallbackUrlIfIsValidAndStateError() throws URISyntaxException { final String expectedCallbackUrl = "http://qwerty.de/" + jobId + "/" + jobState; // then - verify(this.restTemplate, times(1)).getForEntity(eq(new URI(expectedCallbackUrl)), eq(Void.class)); + verify(this.restTemplate, times(1)).getForEntity(new URI(expectedCallbackUrl), Void.class); } @Test @@ -74,7 +74,7 @@ void shouldCallCallbackUrlIfUrlIsValidAndWithoutPlaceholders() throws URISyntaxE final String expectedCallbackUrl = "https://hostname.com/"; // then - verify(this.restTemplate, times(1)).getForEntity(eq(new URI(expectedCallbackUrl)), eq(Void.class)); + verify(this.restTemplate, times(1)).getForEntity(new URI(expectedCallbackUrl), Void.class); } @Test @@ -89,7 +89,7 @@ void shouldCallCallbackUrlIfUrlIsValidAndWithOnePlaceholder() throws URISyntaxEx final String expectedCallbackUrl = "https://hostname.com/callback?id=" + jobId; // then - verify(this.restTemplate, times(1)).getForEntity(eq(new URI(expectedCallbackUrl)), eq(Void.class)); + verify(this.restTemplate, times(1)).getForEntity(new URI(expectedCallbackUrl), Void.class); } @Test diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/bpdm/BpdmFacadeTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/bpdm/BpdmFacadeTest.java index 9587154ec4..e2cb9c362a 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/bpdm/BpdmFacadeTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/bpdm/BpdmFacadeTest.java @@ -38,7 +38,7 @@ void shouldReturnManufacturerNameWhenManufacturerIdExists() { final Optional manufacturerName = bpdmFacade.findManufacturerName(manufacturerId); assertThat(manufacturerName).isNotEmpty(); - assertThat(manufacturerName.get()).isEqualTo("OEM A"); + assertThat(manufacturerName.get()).contains("OEM A"); } } diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/JobOrchestratorTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/JobOrchestratorTest.java index f6a2a8b3a4..4d78f00a65 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/JobOrchestratorTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/connector/job/JobOrchestratorTest.java @@ -147,7 +147,7 @@ void startJob_WithZeroDataRequest_CompletesJob() { // Assert verifyNoInteractions(processManager); verify(jobStore).completeJob(eq(newJob.getJobIdString()), any()); - verify(jobStore).find(eq(newJob.getJobIdString())); + verify(jobStore).find(newJob.getJobIdString()); verifyNoMoreInteractions(jobStore); assertThat(response).isEqualTo( @@ -204,7 +204,7 @@ void startJob_WhenHandlerInitiateThrows_StopJob() { verify(jobStore).create(jobCaptor.capture()); verify(jobStore).markJobInError(jobCaptor.getValue().getJobIdString(), JOB_EXECUTION_FAILED, "java.lang.RuntimeException"); - verify(jobStore).find(eq(jobCaptor.getValue().getJobIdString())); + verify(jobStore).find(jobCaptor.getValue().getJobIdString()); verifyNoMoreInteractions(jobStore); verifyNoInteractions(processManager); @@ -226,7 +226,7 @@ void startJob_WhenHandlerJobExceptioWithParamter_StopJob() { verify(jobStore).create(jobCaptor.capture()); verify(jobStore).markJobInError(jobCaptor.getValue().getJobIdString(), JOB_EXECUTION_FAILED, "org.eclipse.tractusx.irs.connector.job.JobException"); - verify(jobStore).find(eq(jobCaptor.getValue().getJobIdString())); + verify(jobStore).find(jobCaptor.getValue().getJobIdString()); verifyNoMoreInteractions(jobStore); assertThat(response).isEqualTo(JobInitiateResponse.builder() .jobId(jobCaptor.getValue().getJobIdString()) @@ -257,7 +257,7 @@ void transferProcessCompleted_WhenCalledBackForCompletedTransfer_WithoutNextTran // Assert verify(jobStore).completeTransferProcess(job.getJobIdString(), transfer); verify(jobStore).completeJob(eq(job.getJobIdString()), any()); - verify(jobStore).find(eq(job.getJobIdString())); + verify(jobStore).find(job.getJobIdString()); verifyNoInteractions(processManager); verifyNoMoreInteractions(jobStore); } @@ -270,7 +270,7 @@ void transferProcessCompleted_WhenJobNotCompleted_DoesNotCallComplete() { // Assert verify(jobStore).completeTransferProcess(job.getJobIdString(), transfer); verify(jobStore).completeJob(eq(job.getJobIdString()), any()); - verify(jobStore).find(eq(job.getJobIdString())); + verify(jobStore).find(job.getJobIdString()); verifyNoMoreInteractions(jobStore); verifyNoMoreInteractions(handler); } @@ -311,7 +311,7 @@ void transferProcessCompleted_WhenHandlerCompleteThrows_StopJob() { // Assert verify(jobStore).markJobInError(job.getJobIdString(), JOB_EXECUTION_FAILED, "org.eclipse.tractusx.irs.connector.job.JobException"); - verify(jobStore, times(2)).find(eq(job.getJobIdString())); + verify(jobStore, times(2)).find(job.getJobIdString()); verifyNoMoreInteractions(jobStore); verifyNoInteractions(processManager); } @@ -361,7 +361,7 @@ void transferProcessCompleted_WhenNextTransferStartUnsuccessful_Abort(ResponseSt // temporarily created job should be deleted verify(jobStore).markJobInError(job.getJobIdString(), "Failed to start a transfer", "org.eclipse.tractusx.irs.connector.job.JobException"); - verify(jobStore).find(eq(job.getJobIdString())); + verify(jobStore).find(job.getJobIdString()); verifyNoMoreInteractions(jobStore); } @@ -376,7 +376,7 @@ void transferProcessCompleted_WhenHandlerRecurseThrows_StopJob() { // Assert verify(jobStore).markJobInError(job.getJobIdString(), JOB_EXECUTION_FAILED, "java.lang.RuntimeException"); - verify(jobStore).find(eq(job.getJobIdString())); + verify(jobStore).find(job.getJobIdString()); verifyNoMoreInteractions(jobStore); verifyNoInteractions(processManager); } diff --git a/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceTest.java b/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceTest.java index 92a24a952e..6dc14df336 100644 --- a/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceTest.java +++ b/irs-api/src/test/java/org/eclipse/tractusx/irs/services/IrsItemGraphQueryServiceTest.java @@ -143,7 +143,7 @@ void shouldReturnFoundJobs() { assertThat(jobs.content().get(0).getStartedOn()).isNotNull(); assertThat(jobs.content().get(0).getCompletedOn()).isNotNull(); assertThat(jobs.pageSize()).isEqualTo(10); - assertThat(jobs.pageNumber()).isEqualTo(0); + assertThat(jobs.pageNumber()).isZero(); assertThat(jobs.pageCount()).isEqualTo(1); assertThat(jobs.totalElements()).isEqualTo(1); } diff --git a/irs-models/src/main/java/org/eclipse/tractusx/irs/component/assetadministrationshell/AssetAdministrationShellDescriptor.java b/irs-models/src/main/java/org/eclipse/tractusx/irs/component/assetadministrationshell/AssetAdministrationShellDescriptor.java index 802d2d05a4..403ad7e4c4 100644 --- a/irs-models/src/main/java/org/eclipse/tractusx/irs/component/assetadministrationshell/AssetAdministrationShellDescriptor.java +++ b/irs-models/src/main/java/org/eclipse/tractusx/irs/component/assetadministrationshell/AssetAdministrationShellDescriptor.java @@ -130,7 +130,7 @@ public List filterDescriptorsByAspectTypes(final List isMatching( submodelDescriptor, type))) - .collect(Collectors.toList()); + .toList(); } private boolean isMatching(final SubmodelDescriptor submodelDescriptor, final String aspectTypeFilter) { From 8693dc47b6c2ec361272db48d135e5b0741101ac Mon Sep 17 00:00:00 2001 From: Jan Kreutzfeld Date: Tue, 10 Jan 2023 08:10:57 +0100 Subject: [PATCH 56/62] chore(owasp):[-] Update OWASP Dependency Check Plugin to 7.4.4 to fix DB error --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1511a00704..1105425bc0 100644 --- a/pom.xml +++ b/pom.xml @@ -53,7 +53,7 @@ 10.4 0.8.8 3.19.0 - 7.3.0 + 7.4.4 3.0.0-M7 3.3.0 From e08517e362533e5aa132c6b028ae3239a28241df Mon Sep 17 00:00:00 2001 From: Jan Kreutzfeld Date: Tue, 10 Jan 2023 08:32:35 +0100 Subject: [PATCH 57/62] chore(owasp):[-] Suppress two irrelevant SnakeYAML findings --- ci/owasp-suppressions.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/ci/owasp-suppressions.xml b/ci/owasp-suppressions.xml index 508409d4c8..8b5466dba9 100644 --- a/ci/owasp-suppressions.xml +++ b/ci/owasp-suppressions.xml @@ -81,6 +81,20 @@ org\.yaml:snakeyaml.* CVE-2022-1471 + + + org\.yaml:snakeyaml.* + CVE-2021-4235 + + + + org\.yaml:snakeyaml.* + CVE-2022-3064 + Date: Tue, 10 Jan 2023 08:41:53 +0100 Subject: [PATCH 58/62] chore(owasp):[-] Update Spring Boot to 2.7.7, suppress finding in LatencyUtils --- ci/owasp-suppressions.xml | 7 +++++++ pom.xml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ci/owasp-suppressions.xml b/ci/owasp-suppressions.xml index 8b5466dba9..3456123411 100644 --- a/ci/owasp-suppressions.xml +++ b/ci/owasp-suppressions.xml @@ -102,4 +102,11 @@ com\.fasterxml\.jackson\.core:jackson-databind.* CVE-2022-42003 + + + org\.latencyutils.* + CVE-2021-4277 + \ No newline at end of file diff --git a/pom.xml b/pom.xml index 1105425bc0..7d124569d1 100644 --- a/pom.xml +++ b/pom.xml @@ -33,7 +33,7 @@ - 2.7.5 + 2.7.7 3.1.5 1.6.7 1.10.0 From 7cf104e507830af007fac9aa11f5559562c30fce Mon Sep 17 00:00:00 2001 From: Jan Kreutzfeld Date: Tue, 10 Jan 2023 09:14:54 +0100 Subject: [PATCH 59/62] chore(trivy):[-] Update packages in Docker image to fix SSL issue --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1aa7a2e6dc..3eabc9ea90 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN --mount=type=cache,target=/root/.m2 mvn -B clean package -pl :$BUILD_TARGET # Copy the jar and build image FROM eclipse-temurin:19-jre-alpine AS irs-api -RUN apk upgrade +RUN apk update && apk upgrade -a ARG UID=10000 ARG GID=1000 From 8aa7ee6ac874f7b32dad0b8b46c1dc6c12f93a42 Mon Sep 17 00:00:00 2001 From: Jan Kreutzfeld Date: Tue, 10 Jan 2023 09:25:11 +0100 Subject: [PATCH 60/62] Revert "chore(trivy):[-] Update packages in Docker image to fix SSL issue" This reverts commit 7cf104e507830af007fac9aa11f5559562c30fce. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3eabc9ea90..1aa7a2e6dc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN --mount=type=cache,target=/root/.m2 mvn -B clean package -pl :$BUILD_TARGET # Copy the jar and build image FROM eclipse-temurin:19-jre-alpine AS irs-api -RUN apk update && apk upgrade -a +RUN apk upgrade ARG UID=10000 ARG GID=1000 From 3cc04226cf32128ff3f14ff48e064c15e030fcc7 Mon Sep 17 00:00:00 2001 From: Jan Kreutzfeld Date: Tue, 10 Jan 2023 10:06:46 +0100 Subject: [PATCH 61/62] chore(docker):[TRI-1014] Add support for docker tags in PRs --- .github/workflows/irs-build.yml | 4 ++++ .github/workflows/trivy.yml | 2 ++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/irs-build.yml b/.github/workflows/irs-build.yml index d52538f071..c67af9ba7d 100644 --- a/.github/workflows/irs-build.yml +++ b/.github/workflows/irs-build.yml @@ -84,6 +84,8 @@ jobs: VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,') # Strip "v" prefix from tag name [[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//') + # Support PR ref versions + [[ "${{ github.ref }}" == "refs/pull/"* ]] && VERSION=PR-$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\)/merge,\1,') # Use Docker `latest` tag convention [ "$VERSION" == "main" ] && VERSION=latest echo IMAGE_ID=$IMAGE_ID @@ -115,6 +117,8 @@ jobs: VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,') # Strip "v" prefix from tag name [[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//') + # Support PR ref versions + [[ "${{ github.ref }}" == "refs/pull/"* ]] && VERSION=PR-$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\)/merge,\1,') # Use Docker `latest` tag convention [ "$VERSION" == "main" ] && VERSION=latest echo IMAGE_ID=$IMAGE_ID diff --git a/.github/workflows/trivy.yml b/.github/workflows/trivy.yml index 9e88b8e73c..c1b5c2c865 100644 --- a/.github/workflows/trivy.yml +++ b/.github/workflows/trivy.yml @@ -66,6 +66,8 @@ jobs: VERSION=$(echo "${{ github.head_ref || github.ref }}" | sed -e 's,.*/\(.*\),\1,') # Strip "v" prefix from tag name [[ "${{ github.head_ref || github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//') + # Support PR ref versions + [[ "${{ github.ref }}" == "refs/pull/"* ]] && VERSION=PR-$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\)/merge,\1,') # Use Docker `latest` tag convention [ "$VERSION" == "main" ] && VERSION=latest echo VERSION=$VERSION From 97ee32ca658e9da0871768599d83d3bac8d8ccf5 Mon Sep 17 00:00:00 2001 From: Jan Kreutzfeld Date: Tue, 10 Jan 2023 10:32:02 +0100 Subject: [PATCH 62/62] chore(docker):[TRI-1014] Add false positive to ignore list --- ci/.trivyignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ci/.trivyignore b/ci/.trivyignore index 9af40b9b8a..9916cd898b 100644 --- a/ci/.trivyignore +++ b/ci/.trivyignore @@ -1,2 +1,5 @@ # Only relevant if UNWRAP_SINGLE_VALUE_ARRAYS is activated, which is not the case here. -CVE-2022-42003 \ No newline at end of file +CVE-2022-42003 + +# HttpInvokerServiceExporter is not loaded as a bean in the IRS. +CVE-2016-1000027 \ No newline at end of file